Skip to content

Commit

Permalink
fix(ci-cd): Fix keystore path
Browse files Browse the repository at this point in the history
  • Loading branch information
Myzel394 committed May 3, 2024
1 parent b8a302d commit e6115a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/prepare-keystore/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit e6115a0

Please sign in to comment.