Fix building keystore

This commit is contained in:
uazo
2023-07-20 22:32:07 +08:00
committed by GitHub
parent 970188f2a6
commit 7db9011113
+5 -2
View File
@@ -216,8 +216,11 @@ jobs:
sudo chmod o-rxw /run/user/1000/
# prepare keystore
echo "${{ secrets.KEYSTORE }}" > ~/cromite.keystore.asc
gpg -d --passphrase "${{ secrets.KEYSTORE_PASSPHRASE }}" --batch ~/cromite.keystore.asc > ~/cromite.keystore
echo "::group::-------- prepare keystore"
cd $WORKSPACE
echo "${{ secrets.KEYSTORE }}" > cromite.keystore.asc
gpg -d --passphrase "${{ secrets.KEYSTORE_PASSPHRASE }}" --batch cromite.keystore.asc > cromite.keystore
echo "::endgroup::"
- name: Build Bromite Android arm64
if: ${{ (github.event.inputs.target_os == 'android' || github.event.inputs.target_os == 'all') && (github.event.inputs.build == 'arm64' || github.event.inputs.build == 'all') }}