Skip to content

Commit 817ab79

Browse files
committed
rename parameters
1 parent 8efce9b commit 817ab79

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ jobs:
3939

4040
- uses: cedvdb/flutter-build-android
4141
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 }}"
4444
# optionals
4545
build-cmd: flutter build apk --release --flavor dev
4646
working-directory: ./

action.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ inputs:
77
build-cmd:
88
description: The full build command, can be used to add arguments
99
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"
1212
required: true
13-
release-key-password:
13+
keystore-password:
1414
description: "The password for the playstore key used to sign the app"
1515
required: true
1616

@@ -56,8 +56,8 @@ runs:
5656
echo "storePassword=$RELEASE_KEY_PASSWORD" >> key.properties
5757
echo "keyPassword=$RELEASE_KEY_PASSWORD" >> key.properties
5858
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 }}
6161
working-directory: ${{ inputs.working-directory }}/android
6262

6363
- name: Build

0 commit comments

Comments
 (0)