Deploy Android Debug #3
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
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: Get local.properties from secrets | |
run: echo "${{secrets.ProjectSecrets }}" > $GITHUB_WORKSPACE/local.properties | |
- 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 |