fix multiline secrets by using base64
This commit is contained in:
parent
43aa26a107
commit
39df97f4d1
@ -41,9 +41,8 @@ jobs:
|
|||||||
|
|
||||||
- name: Load secrets from github
|
- name: Load secrets from github
|
||||||
run: |
|
run: |
|
||||||
echo "${{ secrets.ANDROID_SECRET_PROPERTIES }}" > secrets.properties
|
echo "${{ secrets.ANDROID_SECRET_PROPERTIES_BASE64 }}" | base64 -d > secrets.properties
|
||||||
echo "${{ secrets.ANDROID_GOOGLE_PLAY_JSON }}" > fastlane/google-key.json
|
echo "${{ secrets.ANDROID_GOOGLE_PLAY_JSON_BASE64 }}" | base64 -d > fastlane/google-key.json
|
||||||
# decode the base64 encoded google key
|
|
||||||
echo "${{ secrets.ANDROID_KEYSTORE_BASE64 }}" | base64 -d > release.keystore
|
echo "${{ secrets.ANDROID_KEYSTORE_BASE64 }}" | base64 -d > release.keystore
|
||||||
working-directory: android
|
working-directory: android
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user