From 7f89b6d4d0bc4996c0f1802f81abcc23ce47c221 Mon Sep 17 00:00:00 2001 From: Peter Stone Date: Fri, 13 Mar 2026 23:04:02 +0000 Subject: refactor: update package name to org.terst.nav and setup CI/CD with Firebase App Distribution --- .github/workflows/android.yml | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 .github/workflows/android.yml (limited to '.github') diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml new file mode 100644 index 0000000..ee85881 --- /dev/null +++ b/.github/workflows/android.yml @@ -0,0 +1,43 @@ +name: Android CI/CD + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: Set up JDK 17 + uses: actions/setup-java@v4 + with: + java-version: '17' + distribution: 'temurin' + cache: gradle + + - name: Grant execute permission for gradlew + run: chmod +x android-app/gradlew + + - name: Build with Gradle + run: ./gradlew assembleDebug + working-directory: android-app + + - name: Upload artifact + uses: actions/upload-artifact@v4 + with: + name: app-debug + path: android-app/app/build/outputs/apk/debug/app-debug.apk + + - name: upload artifact to Firebase App Distribution + if: github.ref == 'refs/heads/main' + uses: willydouglas/firebase-distribution-action@v1 + with: + appId: ${{secrets.FIREBASE_APP_ID}} + serviceCredentialsFileContent: ${{ secrets.CREDENTIAL_FILE_CONTENT }} + groups: testers + file: android-app/app/build/outputs/apk/debug/app-debug.apk -- cgit v1.2.3