Fix quoting for environment variable expansion in macOS build workflow

This commit is contained in:
mr. M
2025-01-23 21:47:17 +01:00
parent 3972f3e2a7
commit 5f7fcd57d2

View File

@@ -128,9 +128,9 @@ jobs:
- name: create .p12 for codesign 🖊️
run: |
cd engine
echo ${{ secrets.macOS_CERTIFICATES_P12_For_App_BASE64 }} > cert.txt
echo "${{ secrets.macOS_CERTIFICATES_P12_For_App_BASE64 }}" > cert.txt
base64 --decode -i cert.txt -o zenCert.p12
echo ${{ secrets.macOS_CERTIFICATES_P12_PASSWORD }} > zenpCertPassword.passwd
echo "${{ secrets.macOS_CERTIFICATES_P12_PASSWORD }}" > zenpCertPassword.passwd
- name: Remove certificate sensitive information
run: |