Skip to content

Commit

Permalink
ci/cd: fix apk extraction
Browse files Browse the repository at this point in the history
  • Loading branch information
dulvui committed Mar 5, 2023
1 parent d5c5b18 commit 7ba0c0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/upload-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,13 @@ jobs:
# track: 'internal'
# status: completed

- name: Bundle to apk
- name: Bundle aab to apk
run: |
wget -q https://github.com/google/bundletool/releases/download/1.14.0/bundletool-all-1.14.0.jar
java -jar bundletool-all-1.14.0.jar build-apks --bundle=Ball2Box.aab --output=Ball2Box.apks \
--ks=keystore.keystore --ks-pass=pass:${{ secrets.ANDROID_STORE_PASSWORD }} --ks-key-alias=${{ secrets.ANDROID_KEYSTORE_ALIAS }} \
--key-pass=pass:${{ secrets.ANDROID_KEYSTORE_PASSWORD }} --mode=universal
unzip -p Ball2Box.apks universal.apk universal.apk > Ball2Box.apk
unzip -p Ball2Box.apks universal.apk > Ball2Box.apk
- name: find apk
run: |
Expand Down

0 comments on commit 7ba0c0c

Please sign in to comment.