v1.5.0-hotfix3: Decode keystore in workflow

This commit is contained in:
zarzet
2026-01-02 04:09:49 +07:00
parent 6d5c9d0f91
commit 4caa803eb2
6 changed files with 19 additions and 13 deletions

View File

@@ -86,10 +86,16 @@ jobs:
- name: Generate app icons
run: dart run flutter_launcher_icons
- name: Decode Keystore
run: |
echo "${{ secrets.KEYSTORE_BASE64 }}" | base64 -d > android/app/ci-keystore.jks
ls -la android/app/ci-keystore.jks
env:
KEYSTORE_BASE64: ${{ secrets.KEYSTORE_BASE64 }}
- name: Build APK (Release)
run: flutter build apk --release --split-per-abi
env:
KEYSTORE_BASE64: ${{ secrets.KEYSTORE_BASE64 }}
KEYSTORE_PASSWORD: ${{ secrets.KEYSTORE_PASSWORD }}
KEY_ALIAS: ${{ secrets.KEY_ALIAS }}
KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }}