We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e325615 commit ec2cabcCopy full SHA for ec2cabc
1 file changed
.github/workflows/build.yaml
@@ -169,7 +169,8 @@ jobs:
169
env:
170
KEYSTORE_BASE64: ${{ secrets.ANDROID_KEYSTORE_BASE64 }}
171
run: |
172
- echo "$KEYSTORE_BASE64" | base64 --decode > android/keystore-orig.jks
+ printf '%s' "$KEYSTORE_BASE64" | base64 --decode > android/keystore-orig.jks
173
+ [ -s android/keystore-orig.jks ] || { echo "ERROR: ANDROID_KEYSTORE_BASE64 secret is empty or not set"; exit 1; }
174
keytool -importkeystore \
175
-srckeystore android/keystore-orig.jks \
176
-destkeystore android/keystore.jks \
0 commit comments