mirror of
https://github.com/Myzel394/NumberHub.git
synced 2025-06-18 16:25:27 +02:00
fix(ci-cd): Fix keystore path
This commit is contained in:
parent
b8a302d815
commit
e6115a0b07
4
.github/actions/prepare-keystore/action.yml
vendored
4
.github/actions/prepare-keystore/action.yml
vendored
@ -20,12 +20,12 @@ runs:
|
|||||||
steps:
|
steps:
|
||||||
- name: Write Keystore file 🗄️
|
- name: Write Keystore file 🗄️
|
||||||
shell: bash
|
shell: bash
|
||||||
run: echo "${{ inputs.keyStoreBase64 }}" | base64 -d > ~/key.jks
|
run: echo "${{ inputs.keyStoreBase64 }}" | base64 -d > /home/runner/key.jks
|
||||||
|
|
||||||
- name: Write Keystore properties 🗝️
|
- name: Write Keystore properties 🗝️
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
echo "storeFile=~/key.jks" > key.properties
|
echo "storeFile=/home/runner/key.jks" > key.properties
|
||||||
echo "storePassword=${{ inputs.signingStorePassword }}" >> key.properties
|
echo "storePassword=${{ inputs.signingStorePassword }}" >> key.properties
|
||||||
echo "keyPassword=${{ inputs.signingKeyPassword }}" >> key.properties
|
echo "keyPassword=${{ inputs.signingKeyPassword }}" >> key.properties
|
||||||
echo "keyAlias=${{ inputs.signingKeyAlias }}" >> key.properties
|
echo "keyAlias=${{ inputs.signingKeyAlias }}" >> key.properties
|
||||||
|
Loading…
x
Reference in New Issue
Block a user