File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -427,8 +427,8 @@ jobs:
427
427
${{ secrets.APPLE_DEVELOPER_PASSWORD_SECRET_NAME }} > $output:dev-pass
428
428
${{ secrets.APPLE_APPCERT_PASS_SECRET_NAME }} > $output:appcert-pass
429
429
${{ secrets.APPLE_INSTCERT_PASS_SECRET_NAME }} > $output:instcert-pass
430
- ${{ secrets.APPLE_APPCERT_SECRET_NAME }} base64> appcert.p12
431
- ${{ secrets.APPLE_INSTCERT_SECRET_NAME }} base64> instcert.p12
430
+ ${{ secrets.APPLE_APPCERT_SECRET_NAME }} base64> ${{ runner.temp }}/ appcert.p12
431
+ ${{ secrets.APPLE_INSTCERT_SECRET_NAME }} base64> ${{ runner.temp }}/ instcert.p12
432
432
433
433
- name : Set up signing/notarization infrastructure
434
434
run : |
@@ -439,7 +439,7 @@ jobs:
439
439
# Prevent re-locking
440
440
security set-keychain-settings $RUNNER_TEMP/buildagent.keychain
441
441
442
- security import appcert.p12 \
442
+ security import $RUNNER_TEMP/ appcert.p12 \
443
443
-k $RUNNER_TEMP/buildagent.keychain \
444
444
-P '${{ steps.signing-secrets.outputs.appcert-pass }}' \
445
445
-T /usr/bin/codesign
@@ -448,7 +448,7 @@ jobs:
448
448
-s -k pwd \
449
449
$RUNNER_TEMP/buildagent.keychain
450
450
451
- security import instcert.p12 \
451
+ security import $RUNNER_TEMP/ instcert.p12 \
452
452
-k $RUNNER_TEMP/buildagent.keychain \
453
453
-P '${{ steps.signing-secrets.outputs.instcert-pass }}' \
454
454
-T /usr/bin/pkgbuild
You can’t perform that action at this time.
0 commit comments