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