File tree 1 file changed +3
-4
lines changed
1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 38
38
- name : Check flutter found
39
39
id : check_flutter
40
40
shell : bash
41
- continue-on-error : true
42
41
run : |
43
42
if flutter --version; then
44
43
echo "installed=true" >> "$GITHUB_OUTPUT"
@@ -59,11 +58,11 @@ runs:
59
58
- name : Decode keystore and create jks and properties file for signing the app
60
59
shell : bash
61
60
run : |
62
- echo "$RELEASE_KEY " | base64 --decode > app/keystore.jks
61
+ echo "$KEYSTORE " | base64 --decode > app/keystore.jks
63
62
echo "storeFile=keystore.jks" >> key.properties
64
63
echo "keyAlias=upload" >> key.properties
65
- echo "storePassword=$RELEASE_KEY_PASSWORD " >> key.properties
66
- echo "keyPassword=$RELEASE_KEY_PASSWORD " >> key.properties
64
+ echo "storePassword=$KEYSTORE_PASSWORD " >> key.properties
65
+ echo "keyPassword=$KEYSTORE_PASSWORD " >> key.properties
67
66
env :
68
67
KEYSTORE : ${{ inputs.keystore-base64 }}
69
68
KEYSTORE_PASSWORD : ${{ inputs.keystore-password }}
You can’t perform that action at this time.
0 commit comments