Files
super-app/.github/workflows/master-push.yml
2025-06-12 07:05:51 +00:00

24 lines
449 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-and-run-unit-tests.yml
with:
environment: qa
type: debug
output: APK
secrets: inherit
build-upload:
uses: ./.github/workflows/apk-upload.yml
needs: [ build ]
secrets: inherit