-
-
Notifications
You must be signed in to change notification settings - Fork 19
44 lines (42 loc) · 1.92 KB
/
build-android.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
name: Build RVMob for Android (debug)
on:
push:
jobs:
build-android-debug:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Enable Corepack
run: corepack enable
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 18
cache: 'yarn'
- name: Set up Java
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'microsoft'
- name: Install dependencies and prepare assets
run: yarn install && npx react-native-asset
- name: Bundle the JS
run: yarn react-native bundle --platform android --entry-file ./index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res
- name: Build the app
run: yarn react-native build-android --tasks assembleDebug
- name: Rename debug APKs
run: |
mv app-arm64-v8a-debug.apk RVMob-Debug-${{ github.sha }}-arm64-v8a.apk
mv app-armeabi-v7a-debug.apk RVMob-Debug-${{ github.sha }}-armeabi-v7a.apk
mv app-x86_64-debug.apk RVMob-Debug-${{ github.sha }}-x86_64.apk
mv app-x86-debug.apk RVMob-Debug-${{ github.sha }}-x86.apk
working-directory: /home/runner/work/rvmob/rvmob/android/app/build/outputs/apk/debug/
- name: Upload debug APK
uses: actions/upload-artifact@v4
with:
path: |
/home/runner/work/rvmob/rvmob/android/app/build/outputs/apk/debug/RVMob-Debug-${{ github.sha }}-arm64-v8a.apk
/home/runner/work/rvmob/rvmob/android/app/build/outputs/apk/debug/RVMob-Debug-${{ github.sha }}-armeabi-v7a.apk
/home/runner/work/rvmob/rvmob/android/app/build/outputs/apk/debug/RVMob-Debug-${{ github.sha }}-x86_64.apk
/home/runner/work/rvmob/rvmob/android/app/build/outputs/apk/debug/RVMob-Debug-${{ github.sha }}-x86.apk