-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #204 from mash-up-kr/chore/firebase_cd
[Chore] firebase CD WIP
- Loading branch information
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# ref: https://dev.to/supersuman/build-and-sign-android-apps-using-github-actions-54j | ||
name: Android QA Build CD | ||
|
||
on: [ workflow_dispatch ] | ||
|
||
jobs: | ||
qa-build-cd: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Setup JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: zulu | ||
java-version: 17 | ||
|
||
- name: Build APK | ||
run: ./gradlew assembleDebug | ||
|
||
- name: Upload Build to Firebase App Distribution | ||
uses: wzieba/Firebase-Distribution-Github-Action@v1 | ||
with: | ||
appId: ${{ secrets.PPAC_FIREBASE_APP_ID }} | ||
serviceCredentialsFileContent: ${{ secrets.PPAC_FIREBASE_CREDENTIAL }} | ||
groups: android-tester | ||
file: app/build/outputs/apk/debug/app-debug.apk | ||
# app/build/outputs/apk/standard/stage/release/app-standard-stage-release.apk |