fix(ci-cd): Remove deprecated base64 action in favor of own implementation

This commit is contained in:
Myzel394 2024-04-26 22:22:49 +02:00 committed by GitHub
parent f71f849837
commit 1af4e97637
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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