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 @@ -381,11 +381,11 @@ jobs:
381381 - name : " Drop public code signing key file"
382382 if : inputs.gpg_sign_release
383383 run : |
384- echo "${{ secrets.CODE_SIGNING_CERT }}" > ${{ runner.temp }}/code_signing.cert
384+ echo "${{ secrets.CODE_SIGNING_CERT }}" > ${{ env.WORKAROUND_TEMP_DIR }}/code_signing.cert
385385 - name : " Drop code signing key file"
386386 if : inputs.gpg_sign_release
387387 run : |
388- echo "${{ secrets.CODE_SIGNING_KEY }}" > ${{ runner.temp }}/code_signing.key
388+ echo "${{ secrets.CODE_SIGNING_KEY }}" > ${{ env.WORKAROUND_TEMP_DIR }}/code_signing.key
389389 - name : Build Windows binary package and NSIS-based installer with signing
390390 if : inputs.gpg_sign_release
391391 env :
@@ -415,8 +415,8 @@ jobs:
415415 ls -lha PACKAGES/
416416 - name : Remove signing artifacts
417417 run : |
418- rm -f ${{ runner.temp }}/code_signing.cert
419- rm -f ${{ runner.temp }}/code_signing.key
418+ rm -f ${{ env.WORKAROUND_TEMP_DIR }}/code_signing.cert
419+ rm -f ${{ env.WORKAROUND_TEMP_DIR }}/code_signing.key
420420 - name : Store Windows binary package and installer
421421 uses : actions/upload-artifact@v4
422422 with :
You can’t perform that action at this time.
0 commit comments