Skip to content

Commit fd224fd

Browse files
committed
fix
1 parent 3320b26 commit fd224fd

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

action.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ runs:
3838
- name: Check flutter found
3939
id: check_flutter
4040
shell: bash
41-
continue-on-error: true
4241
run: |
4342
if flutter --version; then
4443
echo "installed=true" >> "$GITHUB_OUTPUT"
@@ -59,11 +58,11 @@ runs:
5958
- name: Decode keystore and create jks and properties file for signing the app
6059
shell: bash
6160
run: |
62-
echo "$RELEASE_KEY" | base64 --decode > app/keystore.jks
61+
echo "$KEYSTORE" | base64 --decode > app/keystore.jks
6362
echo "storeFile=keystore.jks" >> key.properties
6463
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
6766
env:
6867
KEYSTORE: ${{ inputs.keystore-base64 }}
6968
KEYSTORE_PASSWORD: ${{ inputs.keystore-password }}

0 commit comments

Comments
 (0)