Skip to content

Commit f171259

Browse files
Revert "Windows signing WIP"
This reverts commit 1da2785.
1 parent 1da2785 commit f171259

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/reusable-release-workflow.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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:

0 commit comments

Comments
 (0)