diff --git a/.github/workflows/deploy_production.yml b/.github/workflows/deploy_production.yml index 0742290..203fa95 100644 --- a/.github/workflows/deploy_production.yml +++ b/.github/workflows/deploy_production.yml @@ -38,10 +38,12 @@ jobs: run: | echo ${{ secrets.ANDROID_SIGNING_PROPERTIES }} | base64 --decode > signing.properties + # echo ${{ secrets.ANDROID_RELEASE_KEYSTORE }} > release.keystore.gpg + # gpg -d --passphrase "${{ secrets.ANDROID_RELEASE_KEYSTORE_PASSPHRASE }}" --batch release.keystore.gpg > config/release.keystore - name: Restore release keystore run: | - echo ${{ secrets.ANDROID_RELEASE_KEYSTORE }} > release.keystore.gpg - gpg -d --passphrase "${{ secrets.ANDROID_RELEASE_KEYSTORE_PASSPHRASE }}" --batch release.keystore.gpg > config/release.keystore + echo "${{ secrets.ANDROID_RELEASE_KEYSTORE }}" | base64 --decode | tee release.keystore.gpg + gpg --batch --passphrase "${{ secrets.ANDROID_RELEASE_KEYSTORE_PASSPHRASE }}" -d -o config/release.keystore release.keystore.gpg - name: Decode buildKonfig properties run: echo ${{ secrets.BUILD_KONFIG_PROPERTIES }} | base64 --decode > buildKonfig.properties