(fix): base64 decode
Some checks failed
/ deploy (push) Failing after 18s

This commit is contained in:
Alois 2026-05-02 18:45:28 +02:00
commit 4694acc522

View file

@ -28,7 +28,7 @@ jobs:
KEYSTORE_BASE64: ${{ secrets.ANDROID_KEYSTORE_BASE64 }} KEYSTORE_BASE64: ${{ secrets.ANDROID_KEYSTORE_BASE64 }}
KEYSTORE_PROPERTIES: ${{ secrets.ANDROID_KEYSTORE_PROPERTIES }} KEYSTORE_PROPERTIES: ${{ secrets.ANDROID_KEYSTORE_PROPERTIES }}
run: | run: |
echo "$KEYSTORE_BASE64" | base64 -d > keystore.jks echo "$KEYSTORE_BASE64" | tr -d ' \n\r' | base64 --decode --ignore-garbage > keystore.jks
echo "$KEYSTORE_PROPERTIES" > keystore.properties echo "$KEYSTORE_PROPERTIES" > keystore.properties
- name: Build - name: Build