We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8313a4a commit d78f0bfCopy full SHA for d78f0bf
1 file changed
.github/workflows/release.yml
@@ -66,6 +66,15 @@ jobs:
66
echo "$KEYSTORE_BASE64" | tr -d '[:space:]' | base64 -d > /tmp/keystore.jks
67
echo "ANDROID_KEYSTORE_PATH=/tmp/keystore.jks" >> "$GITHUB_ENV"
68
69
+ - name: Verify keystore
70
+ run: |
71
+ echo "File type: $(file /tmp/keystore.jks)"
72
+ echo "File size: $(wc -c < /tmp/keystore.jks) bytes"
73
+ keytool -list -keystore /tmp/keystore.jks \
74
+ -storepass "$ANDROID_STORE_PASSWORD" 2>&1 \
75
+ | grep -E "Keystore type|contains|Alias name|Entry type" \
76
+ || echo "keytool -list failed (store password may be wrong)"
77
+
78
- name: Assemble release APK
79
env:
80
GITHUB_REF_NAME: ${{ github.ref_name }}
0 commit comments