This commit is contained in:
parent
ce6b0d8ec5
commit
209f0c591e
1 changed files with 2 additions and 2 deletions
|
|
@ -28,8 +28,8 @@ 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: |
|
||||||
bun -e "require('fs').writeFileSync('keystore.jks', Buffer.from(process.env.KEYSTORE_BASE64, 'base64'))"
|
bun -e "require('fs').writeFileSync('keystore.jks', Buffer.from(process.env.KEYSTORE_BASE64.replace(/\s+/g, ''), 'base64'))"
|
||||||
echo "$KEYSTORE_PROPERTIES" > keystore.properties
|
bun -e "require('fs').writeFileSync('keystore.properties', process.env.KEYSTORE_PROPERTIES.trim())"
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: bun run build:apps
|
run: bun run build:apps
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue