Skip to content

Commit

Permalink
ci(Actions): fix echo to append multilines in key.properties
Browse files Browse the repository at this point in the history
Signed-off-by: arafaysaleem <a.rafaysaleem@gmail.com>
  • Loading branch information
arafaysaleem committed Jun 8, 2021
1 parent a04af17 commit 350ddd5
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/PR-merge-build-release.yaml
Expand Up @@ -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/upload-artifact@v2.2.3
with:
Expand Down Expand Up @@ -161,6 +161,7 @@ jobs:
uses: GeekyEggo/delete-artifact@v1.0.0
with:
name: |
signing-key-artifact
keystore-artifact
key-properties-artifact
built-apks-artifact
failOnError: false

0 comments on commit 350ddd5

Please sign in to comment.