File tree 2 files changed +7
-7
lines changed
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 39
39
40
40
- uses : cedvdb/flutter-build-android
41
41
with :
42
- release-key : ${{ secrets.ANDROID_RELEASE_KEY }}
43
- release-key -password : " ${{ secrets.ANDROID_RELEASE_KEY_PASSWORD }}"
42
+ keystore-base64 : ${{ secrets.ANDROID_RELEASE_KEY }}
43
+ keystore -password : " ${{ secrets.ANDROID_RELEASE_KEY_PASSWORD }}"
44
44
# optionals
45
45
build-cmd : flutter build apk --release --flavor dev
46
46
working-directory : ./
Original file line number Diff line number Diff line change @@ -7,10 +7,10 @@ inputs:
7
7
build-cmd :
8
8
description : The full build command, can be used to add arguments
9
9
default : flutter build apk --release
10
- release-key :
11
- description : " key with which to sign the app"
10
+ keystore-base64 :
11
+ description : " keystore with which to sign the app"
12
12
required : true
13
- release-key -password :
13
+ keystore -password :
14
14
description : " The password for the playstore key used to sign the app"
15
15
required : true
16
16
56
56
echo "storePassword=$RELEASE_KEY_PASSWORD" >> key.properties
57
57
echo "keyPassword=$RELEASE_KEY_PASSWORD" >> key.properties
58
58
env :
59
- RELEASE_KEY : ${{ inputs.release-key }}
60
- RELEASE_KEY_PASSWORD : ${{ inputs.release-key -password }}
59
+ KEYSTORE : ${{ inputs.keystore-base64 }}
60
+ KEYSTORE_PASSWORD : ${{ inputs.keystore -password }}
61
61
working-directory : ${{ inputs.working-directory }}/android
62
62
63
63
- name : Build
You can’t perform that action at this time.
0 commit comments