Skip to content

Commit

Permalink
Merge pull request #26 from arafaysaleem/hotfix/fix-release-CI
Browse files Browse the repository at this point in the history
ci(Actions): fix echo to append multilines in key.properties
  • Loading branch information
arafaysaleem authored Jun 8, 2021
2 parents bb65364 + 350ddd5 commit c310a8e
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/PR-merge-build-release.yaml
Original file line number Diff line number Diff line change
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/[email protected]
with:
Expand Down Expand Up @@ -161,6 +161,7 @@ jobs:
uses: GeekyEggo/[email protected]
with:
name: |
signing-key-artifact
keystore-artifact
key-properties-artifact
built-apks-artifact
failOnError: false

0 comments on commit c310a8e

Please sign in to comment.