(fix): incorrect keystore property creation
Some checks failed
/ deploy (push) Failing after 10m12s

This commit is contained in:
Alois 2026-05-02 19:40:30 +02:00
commit 209f0c591e

View file

@ -28,8 +28,8 @@ jobs:
KEYSTORE_BASE64: ${{ secrets.ANDROID_KEYSTORE_BASE64 }}
KEYSTORE_PROPERTIES: ${{ secrets.ANDROID_KEYSTORE_PROPERTIES }}
run: |
bun -e "require('fs').writeFileSync('keystore.jks', Buffer.from(process.env.KEYSTORE_BASE64, 'base64'))"
echo "$KEYSTORE_PROPERTIES" > keystore.properties
bun -e "require('fs').writeFileSync('keystore.jks', Buffer.from(process.env.KEYSTORE_BASE64.replace(/\s+/g, ''), 'base64'))"
bun -e "require('fs').writeFileSync('keystore.properties', process.env.KEYSTORE_PROPERTIES.trim())"
- name: Build
run: bun run build:apps