chore: update repo URL #116
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Clerotri 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 && yarn license-list | |
- name: Bundle the JS | |
run: yarn react-native rnx-bundle | |
- name: Move the assets | |
run: mkdir -p android/app/build/generated/assets/createBundleDebugJsAndAssets && mkdir -p android/app/build/generated/res/createBundleDebugJsAndAssets && cp dist/android/index.android.bundle.hbc android/app/build/generated/assets/createBundleDebugJsAndAssets/index.android.bundle && cp -r dist/android/res android/app/build/generated/res/createBundleDebugJsAndAssets | |
- name: Build the app | |
run: yarn react-native build-android --tasks assembleDebug | |
- name: Rename debug APKs | |
run: | | |
mv app-arm64-v8a-debug.apk Clerotri-Debug-${{ github.sha }}-arm64-v8a.apk | |
mv app-armeabi-v7a-debug.apk Clerotri-Debug-${{ github.sha }}-armeabi-v7a.apk | |
mv app-x86_64-debug.apk Clerotri-Debug-${{ github.sha }}-x86_64.apk | |
mv app-x86-debug.apk Clerotri-Debug-${{ github.sha }}-x86.apk | |
working-directory: /home/runner/work/Clerotri/Clerotri/android/app/build/outputs/apk/debug/ | |
- name: Upload debug APKs | |
uses: actions/upload-artifact@v4 | |
with: | |
path: | | |
/home/runner/work/Clerotri/Clerotri/android/app/build/outputs/apk/debug/Clerotri-Debug-${{ github.sha }}-arm64-v8a.apk | |
/home/runner/work/Clerotri/Clerotri/android/app/build/outputs/apk/debug/Clerotri-Debug-${{ github.sha }}-armeabi-v7a.apk | |
/home/runner/work/Clerotri/Clerotri/android/app/build/outputs/apk/debug/Clerotri-Debug-${{ github.sha }}-x86_64.apk | |
/home/runner/work/Clerotri/Clerotri/android/app/build/outputs/apk/debug/Clerotri-Debug-${{ github.sha }}-x86.apk |