Skip to content

Commit

Permalink
upload-android: fix apk bundling
Browse files Browse the repository at this point in the history
  • Loading branch information
dulvui committed Aug 24, 2023
1 parent 45124b7 commit c64562f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/upload-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,11 +99,10 @@ jobs:
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=PocketBroomball.aab --output=PocketBroomball.apks \
--ks=keystore.keystore --ks-pass=pass:$ANDROID_STORE_PASSWORD --ks-key-alias=$ANDROID_KEYSTORE_ALIAS \
--key-pass=pass:$ANDROID_KEYSTORE_PASSWORD --mode=universal
--ks=keystore.keystore --ks-pass=pass:"$ANDROID_STORE_PASSWORD" --ks-key-alias="$ANDROID_KEYSTORE_ALIAS" \
--key-pass=pass:"$ANDROID_KEYSTORE_PASSWORD" --mode=universal
unzip -p PocketBroomball.apks universal.apk > PocketBroomball.apk
# UPLOAD TO GITHUB RELEASES
- name: Upload binaries to Github release
uses: svenstaro/upload-release-action@v2
Expand Down

0 comments on commit c64562f

Please sign in to comment.