Create build-ios-debug.yml #2
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 Android App Release 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: 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 bundleRelease | |
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-release.aab | |
path: app/android/app/build/outputs/bundle/release/app-release.aab |