File tree Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -289,7 +289,6 @@ jobs:
289
289
SIGNTOOL_PATH : " C:/Program Files (x86)/Windows Kits/10/bin/10.0.19041.0/x86/signtool.exe"
290
290
WIN_CERT_PASSWORD : ${{ secrets[matrix.config.certificate-password-secret] }}
291
291
WIN_CERT_CONTAINER_NAME : ${{ secrets[matrix.config.certificate-container] }}
292
- WIN_SIGNING_ENABLED : ${{ secrets[matrix.config.certificate-password-secret] != '' }}
293
292
294
293
strategy :
295
294
matrix :
Original file line number Diff line number Diff line change 1
1
const childProcess = require ( 'child_process' ) ;
2
2
3
3
exports . default = async function ( configuration ) {
4
- if (
5
- ! process . env . GITHUB_ACTIONS ||
6
- process . env . WIN_SIGNING_ENABLED !== 'true'
7
- ) {
4
+ if ( ! process . env . GITHUB_ACTIONS || process . env . CAN_SIGN !== 'true' ) {
8
5
return ;
9
6
}
10
7
You can’t perform that action at this time.
0 commit comments