24 lines
430 B
YAML
24 lines
430 B
YAML
name: Master Push CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
build:
|
|
uses: ./.github/workflows/generate-build.yml
|
|
with:
|
|
environment: qa
|
|
type: debug
|
|
output: APK
|
|
secrets: inherit
|
|
|
|
build-upload:
|
|
uses: ./.github/workflows/apk-upload.yml
|
|
needs: [ build ]
|
|
secrets: inherit
|