From 32b99304440e76af6702669c7f68d4e7fb3ee9d1 Mon Sep 17 00:00:00 2001 From: ArtDev <45949002+artdeell@users.noreply.github.com> Date: Thu, 28 Sep 2023 18:51:33 +0300 Subject: [PATCH] Feat[build]: also upload AAB This is done for publishing in the Amazon Appstore (or other places that accept AABs) because i dont want to build pojav from random stuff that i have on my pc --- .github/workflows/android.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index e94a31b2f..8f7a30221 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -92,6 +92,12 @@ jobs: with: name: app-debug path: out/app-debug.* + + - name: Upload AAB + uses: actions/upload-artifact@v3 + with: + name: app-release-aab + path: out/app-gplay.aab - name: Upload onto the Google Play testing track continue-on-error: true