fix: base64 decode in CI

This commit is contained in:
2026-05-14 06:36:31 +05:00
parent bff42d7981
commit 1415b19d60
+2 -2
View File
@@ -15,8 +15,8 @@ jobs:
- name: Setup keystore and environment
run: |
echo "${{ secrets.KEYSTORE_BASE64 }}" | base64 -d > app/key.jks
echo "${{ secrets.DOTENV_BASE64 }}" | base64 -d > .build/release/.env
echo "${{ secrets.KEYSTORE_BASE64 }}" | tr -d '\n' | base64 -d > app/key.jks
echo "${{ secrets.DOTENV_BASE64 }}" | tr -d '\n' | base64 -d > .build/release/.env
- name: Build APK
working-directory: .build/release