-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci(Actions): fix echo to append multilines in key.properties
Signed-off-by: arafaysaleem <[email protected]>
- Loading branch information
1 parent
a04af17
commit 350ddd5
Showing
1 changed file
with
5 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,9 +46,9 @@ jobs: | |
- name: Generate key properties | ||
run: | | ||
echo "storeFile=$KEYSTORE_FILENAME" > ./android/key.properties | ||
echo "storePassword=$KEYSTORE_PASSPHRASE" > ./android/key.properties | ||
echo "keyPassword=$KEYSTORE_PASSPHRASE" > ./android/key.properties | ||
echo "keyAlias=$KEY_ALIAS" > ./android/key.properties | ||
echo "storePassword=$KEYSTORE_PASSPHRASE" >> ./android/key.properties | ||
echo "keyPassword=$KEYSTORE_PASSPHRASE" >> ./android/key.properties | ||
echo "keyAlias=$KEY_ALIAS" >> ./android/key.properties | ||
- name: Upload Keystore Artifact | ||
uses: actions/[email protected] | ||
with: | ||
|
@@ -161,6 +161,7 @@ jobs: | |
uses: GeekyEggo/[email protected] | ||
with: | ||
name: | | ||
signing-key-artifact | ||
keystore-artifact | ||
key-properties-artifact | ||
built-apks-artifact | ||
failOnError: false |