blob: ee8588127461d8cbf66f763fae6cfa40431404d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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
|