Skip to content

Commit 036302c

Browse files
authored
Put cert string in shell quotes
1 parent bf040eb commit 036302c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
APPLE_CERTIFICATE_PASSWORD: ${{ secrets.APPLE_CERTIFICATE_PASSWORD }}
6161
KEYCHAIN_PASSWORD: ${{ secrets.KEYCHAIN_PASSWORD }}
6262
run: |
63-
echo $APPLE_CERTIFICATE | base64 --decode > certificate.p12
63+
echo "$APPLE_CERTIFICATE" | base64 --decode > certificate.p12
6464
security create-keychain -p "$KEYCHAIN_PASSWORD" build.keychain
6565
security default-keychain -s build.keychain
6666
security unlock-keychain -p "$KEYCHAIN_PASSWORD" build.keychain

0 commit comments

Comments
 (0)