Skip to content

Commit 9ed9775

Browse files
committed
add quotes
1 parent 919d2e1 commit 9ed9775

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/ant.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,6 +343,7 @@ jobs:
343343
- uses: actions/checkout@v3
344344

345345
- name: Install the Apple certificate and provisioning profile
346+
shell: bash
346347
env:
347348
BUILD_CERTIFICATE_BASE64: ${{ secrets.APPLE_CERTS_BASE64 }}
348349
P12_PASSWORD: ${{ secrets.APPLE_CERTS_BASE64_PASSWORD }}
@@ -352,7 +353,7 @@ jobs:
352353
CERTIFICATE_PATH=$RUNNER_TEMP/build_certificate.p12
353354
KEYCHAIN_PATH=$RUNNER_TEMP/app-signing.keychain-db
354355
# import certificate from secrets
355-
base64 -i ${{ env.BUILD_CERTIFICATE_BASE64 }} --decode -o $CERTIFICATE_PATH
356+
base64 -i "${{ env.BUILD_CERTIFICATE_BASE64 }}" --decode -o $CERTIFICATE_PATH
356357
ls -la $RUNNER_TEMP
357358
security -v verify-cert -c $CERTIFICATE_PATH
358359
# create temporary keychain

0 commit comments

Comments
 (0)