Skip to content

Commit

Permalink
[#3634] Add also the release apks in Firebase App Distribution (#3635)
Browse files Browse the repository at this point in the history
  • Loading branch information
mustafaozhan committed Jun 29, 2024
1 parent 29be0c6 commit dd9da8d
Showing 1 changed file with 22 additions and 4 deletions.
26 changes: 22 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,8 @@ jobs:
path: |
android/app/build/outputs/apk/google/debug/app-google-debug.apk
android/app/build/outputs/apk/huawei/debug/app-huawei-debug.apk
android/app/build/outputs/apk/google/release/app-google-release.apk
android/app/build/outputs/apk/huawei/release/app-huawei-release.apk
- name: Cancel other jobs if this fails
if: failure()
Expand All @@ -116,22 +118,38 @@ jobs:
with:
name: androidArtifacts

- name: Firebase App Distribution Google
- name: Firebase App Distribution Google Debug
uses: wzieba/[email protected]
with:
appId: ${{secrets.ANDROID_GOOGLE_FIREBASE_APP_ID}}
appId: ${{secrets.ANDROID_GOOGLE_DEBUG_FIREBASE_APP_ID}}
token: ${{secrets.FIREBASE_CLI_TOKEN}}
groups: QA
file: google/debug/app-google-debug.apk

- name: Firebase App Distribution Huawei
- name: Firebase App Distribution Google Release
uses: wzieba/[email protected]
with:
appId: ${{secrets.ANDROID_HUAWEI_FIREBASE_APP_ID}}
appId: ${{secrets.ANDROID_GOOGLE_RELEASE_FIREBASE_APP_ID}}
token: ${{secrets.FIREBASE_CLI_TOKEN}}
groups: QA
file: google/release/app-google-release.apk

- name: Firebase App Distribution Huawei Debug
uses: wzieba/[email protected]
with:
appId: ${{secrets.ANDROID_HUAWEI_DEBUG_FIREBASE_APP_ID}}
token: ${{secrets.FIREBASE_CLI_TOKEN}}
groups: QA
file: huawei/debug/app-huawei-debug.apk

- name: Firebase App Distribution Huawei Release
uses: wzieba/[email protected]
with:
appId: ${{secrets.ANDROID_HUAWEI_RELEASE_FIREBASE_APP_ID}}
token: ${{secrets.FIREBASE_CLI_TOKEN}}
groups: QA
file: huawei/release/app-huawei-release.apk

- name: Delete Android Artifacts
uses: geekyeggo/[email protected]
with:
Expand Down

0 comments on commit dd9da8d

Please sign in to comment.