From 575a623f98e36e90f9137004211b52500f6a11c5 Mon Sep 17 00:00:00 2001 From: ignaciosantise Date: Tue, 9 Apr 2024 17:41:41 -0300 Subject: [PATCH] chore: base64 command --- .github/workflows/release-android.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-android.yaml b/.github/workflows/release-android.yaml index 742428e3..139724b2 100644 --- a/.github/workflows/release-android.yaml +++ b/.github/workflows/release-android.yaml @@ -73,7 +73,7 @@ jobs: - run: touch ${{ inputs.path }}/android/sentry.properties && echo "${{ secrets.sentry-file }}" >> ${{ inputs.path }}/android/sentry.properties - run: touch ${{ inputs.path }}/android/secrets.properties && echo "${{ secrets.secrets-file }}" >> ${{ inputs.path }}/android/secrets.properties - run: touch keystore.b64 && echo "${{ secrets.keystore }}" >> keystore.b64 - - run: base64 -d --input keystore.b64 --output ${{ inputs.path }}/android/app/${{ secrets.keystore-name }}.keystore + - run: base64 --decode -i keystore.b64 -o ${{ inputs.path }}/android/app/${{ secrets.keystore-name }}.keystore - name: Build APK run: cd ${{ inputs.path }} && yarn install && yarn run android:build:internal