Files
super-app/.github/workflows/android_build.yml
Shivam Goyal 4405acfb7a TP-28625 | Generate Bundle in GitHub Action (#6324)
* TP-00000 | Bundle in Action

* TP-00000 | Branch Cut CI Fix

* TP-00000 | Upload fix

* TP-00000 | Add Log to Build Metadata

* TP-00000 | Test Bundle

* Revert "TP-00000 | Test Bundle"

This reverts commit d7acfbd940d0b3e9446f4d876dda05f2824c4d79.

* Revert "TP-00000 | Branch Cut CI Fix"

This reverts commit bd20610bbd1b84e71f9c320b9fcb0b58879841d7.

* TP-00000 | Add Branch Name to Log

* TP-00000 | Optimize Input Checks
2023-05-15 12:27:51 +05:30

27 lines
652 B
YAML

name: Android Build CI
on:
push:
branches: [ master, release-*, development ]
pull_request:
branches: [ master, release-*, development ]
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
build-qa-debug:
uses: ./.github/workflows/generate_apk.yml
with:
environment: qa
type: debug
output: APK
build-qa-release:
if: github.event_name == 'push' && (github.ref_name == 'master' || startsWith(github.ref_name, 'release-'))
uses: ./.github/workflows/generate_apk.yml
with:
environment: qa
type: release
output: APK