From f264c6a65432253487e2da4fb3f5bebf630e46f5 Mon Sep 17 00:00:00 2001 From: reconman Date: Sun, 31 Dec 2023 20:57:31 +0100 Subject: [PATCH] Wrap APK in ZIP file before release --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 29b7f7242..01df3d896 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -148,7 +148,8 @@ jobs: env: SUPPLY_JSON_KEY_DATA: ${{ secrets.SERVICE_ACCOUNT_NEW_APP }} SUPPLY_VERSION_CODE: ${{ github.run_number }} - + - name: zip APK + run: zip FGA-apk.zip io.github.fate_grand_automata.apk - id: create_release uses: marvinpinto/action-automatic-releases@latest with: @@ -157,4 +158,4 @@ jobs: prerelease: true title: 'FGA ${{ github.run_number }}' files: | - *.apk \ No newline at end of file + FGA-apk.zip \ No newline at end of file