From 1af4e97637642c77a80c1240151ab9ff54bde825 Mon Sep 17 00:00:00 2001 From: Myzel394 <50424412+Myzel394@users.noreply.github.com> Date: Fri, 26 Apr 2024 22:22:49 +0200 Subject: [PATCH] fix(ci-cd): Remove deprecated base64 action in favor of own implementation --- .github/actions/prepare-keystore/action.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/actions/prepare-keystore/action.yml b/.github/actions/prepare-keystore/action.yml index 228dc62e..49864053 100644 --- a/.github/actions/prepare-keystore/action.yml +++ b/.github/actions/prepare-keystore/action.yml @@ -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