mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Android CI: Additionally make an AAB for uploading to the Play Store (#14584)
This commit is contained in:
parent
00774bc28b
commit
857ba25115
1 changed files with 10 additions and 1 deletions
11
.github/workflows/android.yml
vendored
11
.github/workflows/android.yml
vendored
|
@ -28,8 +28,17 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get install -y --no-install-recommends gettext openjdk-11-jdk-headless
|
sudo apt-get install -y --no-install-recommends gettext openjdk-11-jdk-headless
|
||||||
- name: Build with Gradle
|
- name: Build AAB with Gradle
|
||||||
|
# We build an AAB as well for uploading to the the Play Store.
|
||||||
|
run: cd android; ./gradlew bundlerelease
|
||||||
|
- name: Build APKs with Gradle
|
||||||
|
# "assemblerelease" is very fast after "bundlerelease".
|
||||||
run: cd android; ./gradlew assemblerelease
|
run: cd android; ./gradlew assemblerelease
|
||||||
|
- name: Save AAB artifact
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: Minetest-release.aab
|
||||||
|
path: android/app/build/outputs/bundle/release/app-release.aab
|
||||||
- name: Save armeabi artifact
|
- name: Save armeabi artifact
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue