From f9dc5e72126057f1694786546aabdfa16a4dfeb1 Mon Sep 17 00:00:00 2001 From: Myzel394 <50424412+Myzel394@users.noreply.github.com> Date: Sun, 6 Aug 2023 20:49:06 +0200 Subject: [PATCH] fix(ci-cd): Fix key.properties path --- .github/workflows/release-app.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release-app.yaml b/.github/workflows/release-app.yaml index d35f697..77c5007 100644 --- a/.github/workflows/release-app.yaml +++ b/.github/workflows/release-app.yaml @@ -21,10 +21,10 @@ jobs: - name: Write Keystore properties 🗝️ run: | - echo "storeFile=${{ steps.android_keystore.outputs.filePath }}" > android/key.properties - echo "storePassword=${{ secrets.SIGNING_STORE_PASSWORD }}" >> android/key.properties - echo "keyPassword=${{ secrets.SIGNING_KEY_PASSWORD }}" >> android/key.properties - echo "keyAlias=${{ secrets.SIGNING_KEY_ALIAS }}" >> android/key.properties + echo "storeFile=${{ steps.android_keystore.outputs.filePath }}" > key.properties + echo "storePassword=${{ secrets.SIGNING_STORE_PASSWORD }}" >> key.properties + echo "keyPassword=${{ secrets.SIGNING_KEY_PASSWORD }}" >> key.properties + echo "keyAlias=${{ secrets.SIGNING_KEY_ALIAS }}" >> key.properties - name: Setup Java uses: actions/setup-java@v3