mirror of
https://github.com/Myzel394/NumberHub.git
synced 2025-06-19 00:35:26 +02:00
fix(ci-cd): Remove deprecated base64 action in favor of own implementation
This commit is contained in:
parent
f71f849837
commit
1af4e97637
8
.github/actions/prepare-keystore/action.yml
vendored
8
.github/actions/prepare-keystore/action.yml
vendored
@ -19,16 +19,12 @@ runs:
|
||||
using: composite
|
||||
steps:
|
||||
- name: Write Keystore file 🗄️
|
||||
id: android_keystore
|
||||
uses: timheuer/base64-to-file@v1.0.3
|
||||
with:
|
||||
fileName: key.jks
|
||||
encodedString: ${{ inputs.keyStoreBase64 }}
|
||||
run: echo "${{ inputs.keyStoreBase64 }}" | base64 -d > ~/key.jks
|
||||
|
||||
- name: Write Keystore properties 🗝️
|
||||
shell: bash
|
||||
run: |
|
||||
echo "storeFile=${{ steps.android_keystore.outputs.filePath }}" > key.properties
|
||||
echo "storeFile=~/key.jks" > key.properties
|
||||
echo "storePassword=${{ inputs.signingStorePassword }}" >> key.properties
|
||||
echo "keyPassword=${{ inputs.signingKeyPassword }}" >> key.properties
|
||||
echo "keyAlias=${{ inputs.signingKeyAlias }}" >> key.properties
|
||||
|
Loading…
x
Reference in New Issue
Block a user