dada
Some checks failed
Build Android / Build APK (push) Has been cancelled
Generated APK AAB (Upload - Create Artifact To Github Action) / build (push) Failing after 2m55s

This commit is contained in:
Alexander Kacheryants 2024-07-12 01:51:05 +03:00
parent f6864fb6c5
commit d0174160c7

View File

@ -31,23 +31,28 @@ jobs:
# Run Tests Build
- name: Run gradle tests
working-directory: ./android/
run: ./gradlew test
# Run Build Project
- name: Build gradle project
working-directory: ./android/
run: ./gradlew build
# Create APK Debug
- name: Build apk debug project (APK) - ${{ env.main_project_module }} module
working-directory: ./android/
run: ./gradlew assembleDebug
# Create APK Release
- name: Build apk release project (APK) - ${{ env.main_project_module }} module
working-directory: ./android/
run: ./gradlew assemble
# Create Bundle AAB Release
# Noted for main module build [main_project_module]:bundleRelease
- name: Build app bundle release (AAB) - ${{ env.main_project_module }} module
working-directory: ./android/
run: ./gradlew ${{ env.main_project_module }}:bundleRelease
# Upload Artifact Build