summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorPeter Stone <thepeterstone@gmail.com>2026-03-13 23:04:02 +0000
committerPeter Stone <thepeterstone@gmail.com>2026-03-13 23:04:12 +0000
commit7f89b6d4d0bc4996c0f1802f81abcc23ce47c221 (patch)
tree2725b968ef4a15dee09f51ce676b5481fba35705 /.github/workflows
parent3c4e18b94db15fc0d012e12aa3be0d0557f6ad3c (diff)
refactor: update package name to org.terst.nav and setup CI/CD with Firebase App Distribution
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/android.yml43
1 files changed, 43 insertions, 0 deletions
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