-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create manual_deploy_to_firebase_workflow.yml
- Loading branch information
1 parent
241ad57
commit d5b59fe
Showing
1 changed file
with
68 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,68 @@ | ||
name: Deploy Android Debug | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
versionCode: | ||
description: Version Code (eg. 123) | ||
required: true | ||
versionName: | ||
description: Version Name (eg 1.2.3) | ||
required: true | ||
|
||
env: | ||
VERSION_CODE: ${{ github.event.inputs.versionCode }} | ||
VERSION_NAME: ${{ github.event.inputs.versionName }} | ||
|
||
jobs: | ||
|
||
build: | ||
name: 🔨 Build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up JDK | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: adopt | ||
java-version: "17" | ||
|
||
- name: Make gradle executable | ||
run: chmod +x ./gradlew | ||
|
||
- name: Build with Gradle | ||
run: ./gradlew build --stacktrace | ||
|
||
deploy: | ||
name: 🚀 Deploy to Firebase App Distribution | ||
needs: | ||
- build | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
||
- name: Checkout Code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up JDK | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: adopt | ||
java-version: "17" | ||
|
||
- name: Make gradle executable | ||
run: chmod +x ./gradlew | ||
|
||
- name: Get local.properties from secrets | ||
run: echo "${{secrets.ProjectSecrets }}" > $GITHUB_WORKSPACE/local.properties | ||
|
||
- name: Build Debug APK | ||
run: ./gradlew assembleDebug --stacktrace | ||
|
||
- name: Firebase App Distribution | ||
uses: wzieba/Firebase-Distribution-Github-Action@v1.7.0 | ||
with: | ||
appId: ${{secrets.FIREBASE_APP_ID}} | ||
serviceCredentialsFileContent: ${{secrets.CREDENTIAL_FILE_CONTENT}} | ||
groups: testers | ||
file: app/build/outputs/apk/debug/app-debug.apk |