From e6115a0b076a30cf03ad2fec02f198d2cff617f6 Mon Sep 17 00:00:00 2001 From: Myzel394 <50424412+Myzel394@users.noreply.github.com> Date: Fri, 3 May 2024 14:17:02 +0200 Subject: [PATCH] fix(ci-cd): Fix keystore path --- .github/actions/prepare-keystore/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/prepare-keystore/action.yml b/.github/actions/prepare-keystore/action.yml index 430aa17c..d8be61d4 100644 --- a/.github/actions/prepare-keystore/action.yml +++ b/.github/actions/prepare-keystore/action.yml @@ -20,12 +20,12 @@ runs: steps: - name: Write Keystore file 🗄️ shell: bash - run: echo "${{ inputs.keyStoreBase64 }}" | base64 -d > ~/key.jks + run: echo "${{ inputs.keyStoreBase64 }}" | base64 -d > /home/runner/key.jks - name: Write Keystore properties 🗝️ shell: bash run: | - echo "storeFile=~/key.jks" > key.properties + echo "storeFile=/home/runner/key.jks" > key.properties echo "storePassword=${{ inputs.signingStorePassword }}" >> key.properties echo "keyPassword=${{ inputs.signingKeyPassword }}" >> key.properties echo "keyAlias=${{ inputs.signingKeyAlias }}" >> key.properties