diff options
Diffstat (limited to '.github/workflows/android.yml')
| -rw-r--r-- | .github/workflows/android.yml | 43 |
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 |
