Ondemand Build #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Ondemand Build | |
on: | |
workflow_dispatch: | |
inputs: | |
flavor: | |
type: choice | |
description: Flavor | |
options: | |
- Dev | |
- Staging | |
- Production | |
is-debug: | |
type: boolean | |
description: Debug mode | |
artifact: | |
type: choice | |
description: Artifact Type | |
options: | |
- Apk | |
- Appbundle | |
slack-id: | |
type: string | |
description: slack account | |
jobs: | |
setup: | |
runs-on: ubuntu-latest | |
steps: | |
- name: setup branch | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.ref_name }} | |
- name: Dump GitHub context | |
env: | |
GITHUB_CONTEXT: ${{ toJSON(github) }} | |
run: echo "$GITHUB_CONTEXT" | |
- name: Entry point | |
run: | | |
echo "Build artifact with these configuration: ${{ github.event.inputs.message }} ${{ fromJSON('["", "🥳"]')[github.event.inputs.use-emoji == 'true'] }} ${{ github.event.inputs.name }}" | |
echo "Flavor: ${{ github.event.inputs.flavor }}" | |
echo "Is debug mode?: ${{ github.event.inputs.is-debug }}" | |
echo "Artifact Type: ${{ github.event.inputs.artifact }}" | |
echo "send to: ${{ github.event.inputs.slack-id }}" | |
echo "Metadata: ${{ github.ref }} | ${{ github.ref_name }} | ${{ github.sha }}" | |