extract keystore for subsequent build step

This commit is contained in:
Philipp Crocoll
2025-07-08 18:23:02 +02:00
parent b380100307
commit 3d3ba45cb1

View File

@@ -324,6 +324,18 @@ jobs:
run: |
make dotnetbuild Flavor=Net
- name: Extract key store
env:
KEYSTORE_BASE64: ${{ secrets.KEYSTORE_BASE64 }}
KeyStore: "${{ github.workspace }}/kp2a.keystore"
shell: bash
run: |
echo $KeyStore
echo $KEYSTORE_BASE64 | base64 --decode > $KeyStore
- name: Build APK (net)
if: github.ref == 'refs/heads/master'
env: