Skip to content

Commit cbb2a2e

Browse files
committed
fixup! fixup! release: create initial Windows installer build workflow
Use the global `DO_WIN_CODESIGN` environment variable rather than re-compute this for the verification of codesigning step. Signed-off-by: Matthew John Cheetham <[email protected]>
1 parent 7c261dc commit cbb2a2e

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

.github/workflows/build-git-installers.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -356,9 +356,7 @@ jobs:
356356
fi &&
357357
openssl dgst -sha256 artifacts/${{matrix.type.fileprefix}}-*.exe | sed "s/.* //" >artifacts/sha-256.txt
358358
- name: Verify that .exe files are code-signed
359-
env:
360-
DO_CODE_SIGN: ${{ secrets.WIN_CODESIGN_CERT_SECRET_NAME != '' }}
361-
if: env.DO_CODE_SIGN == 'true'
359+
if: env.DO_WIN_CODESIGN == 'true'
362360
shell: bash
363361
run: |
364362
PATH=$PATH:"/c/Program Files (x86)/Windows Kits/10/App Certification Kit/" \

0 commit comments

Comments
 (0)