We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7dcc799 commit f14b41dCopy full SHA for f14b41d
1 file changed
.github/workflows/test-keystore.yml
@@ -34,12 +34,25 @@ jobs:
34
keytool -list -keystore test.keystore -storepass '${{ secrets.ANDROID_KEYSTORE_PASSWORD }}'
35
36
if [ $? -eq 0 ]; then
37
- echo "✓ Keystore is valid!"
+ echo "✓ Keystore password is valid!"
38
else
39
echo "✗ Keystore verification failed"
40
exit 1
41
fi
42
43
+ echo "Verifying key alias and key password..."
44
+ keytool -list -keystore test.keystore \
45
+ -storepass '${{ secrets.ANDROID_KEYSTORE_PASSWORD }}' \
46
+ -alias '${{ secrets.ANDROID_KEY_ALIAS }}' \
47
+ -keypass '${{ secrets.ANDROID_KEY_PASSWORD }}'
48
+
49
+ if [ $? -eq 0 ]; then
50
+ echo "✓ Key alias and password are valid!"
51
+ else
52
+ echo "✗ Key alias or key password verification failed"
53
+ exit 1
54
+ fi
55
56
- name: Clean up
57
if: always()
58
run: rm -f test.keystore
0 commit comments