From d6a41fcada5caa70f9845404f6161b37feb76738 Mon Sep 17 00:00:00 2001 From: arafaysaleem Date: Tue, 8 Jun 2021 16:19:04 -0700 Subject: [PATCH] ci(Actions): fix path of keystore file Signed-off-by: arafaysaleem --- .github/workflows/PR-merge-build-release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/PR-merge-build-release.yaml b/.github/workflows/PR-merge-build-release.yaml index a5bfc90..d02a333 100644 --- a/.github/workflows/PR-merge-build-release.yaml +++ b/.github/workflows/PR-merge-build-release.yaml @@ -45,7 +45,7 @@ jobs: gpg -d --passphrase "$KEYSTORE_PASSPHRASE" --batch "$KEYSTORE_FILENAME.asc" > "./android/$KEYSTORE_FILENAME" - name: Generate key properties run: | - echo "storeFile=$KEYSTORE_FILENAME" > ./android/key.properties + 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