-
Notifications
You must be signed in to change notification settings - Fork 1
52 lines (43 loc) · 1.3 KB
/
build-android-debug-aab.yml
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
44
45
46
47
48
49
50
51
52
name: Build Android App Debug AAB
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '11'
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
- name: Install NPM Packages
working-directory: app
run: npm i
- name: Decode and save the keystore file
working-directory: app/android/app
run: |
echo "${{ secrets.ANDROID_UPLOAD_KEYSTORE_FILE_BASE64 }}" | base64 --decode > my-upload-key.keystore
- name: Build Android App AAB
working-directory: app/android
run: ./gradlew bundleDebug
env:
KEYSTORE_FILE: my-upload-key.keystore
KEYSTORE_PASSWORD: ${{ secrets.ANDROID_UPLOAD_KEYSTORE_PASSWORD }}
KEY_ALIAS: ${{ secrets.ANDROID_UPLOAD_KEYSTORE_ALIAS }}
KEY_PASSWORD: ${{ secrets.ANDROID_UPLOAD_KEYSTORE_KEY_PASSWORD }}
- name: Upload AAB
uses: actions/upload-artifact@v4
with:
name: app-debug.aab
path: app/android/app/build/outputs/bundle/release/app-release.aab