Skip to content

Commit

Permalink
Create manual_deploy_to_firebase_workflow.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ndiritumichael authored Oct 8, 2024
1 parent 241ad57 commit d5b59fe
Showing 1 changed file with 68 additions and 0 deletions.
68 changes: 68 additions & 0 deletions .github/workflows/manual_deploy_to_firebase_workflow.yml
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

0 comments on commit d5b59fe

Please sign in to comment.