File tree 2 files changed +4
-1
lines changed
2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -286,6 +286,7 @@ jobs:
286
286
SIGNTOOL_PATH : " C:/Program Files (x86)/Windows Kits/10/bin/10.0.19041.0/x86/signtool.exe"
287
287
WIN_CERT_PASSWORD : ${{ secrets.INSTALLER_CERT_WINDOWS_PASSWORD }}
288
288
WIN_CERT_CONTAINER_NAME : ${{ secrets.INSTALLER_CERT_WINDOWS_CONTAINER }}
289
+ INTERNAL_ENABLE_WINDOWS_SIGNING : ${{ secrets.INTERNAL_ENABLE_WINDOWS_SIGNING }}
289
290
strategy :
290
291
matrix :
291
292
config : ${{ fromJson(needs.select-targets.outputs.build-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 ( ! process . env . GITHUB_ACTIONS ) {
4
+ const enabled = ! ! process . env . INTERNAL_ENABLE_WINDOWS_SIGNING ;
5
+
6
+ if ( ! enabled || ! process . env . GITHUB_ACTIONS ) {
5
7
return ;
6
8
}
7
9
You can’t perform that action at this time.
0 commit comments