File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -286,6 +286,8 @@ jobs:
286286 SIGNTOOL_PATH : " C:/Program Files (x86)/Windows Kits/10/bin/10.0.19041.0/x86/signtool.exe"
287287 WIN_CERT_PASSWORD : ${{ secrets.INSTALLER_CERT_WINDOWS_PASSWORD }}
288288 WIN_CERT_CONTAINER_NAME : ${{ secrets.INSTALLER_CERT_WINDOWS_CONTAINER }}
289+ WIN_SIGNING_ENABLED : ${{ !github.event.pull_request.head.repo.fork }}
290+
289291 strategy :
290292 matrix :
291293 config : ${{ fromJson(needs.select-targets.outputs.build-matrix) }}
Original file line number Diff line number Diff line change 11const childProcess = require ( 'child_process' ) ;
22
33exports . default = async function ( configuration ) {
4- if ( ! process . env . GITHUB_ACTIONS ) {
4+ if (
5+ ! process . env . GITHUB_ACTIONS ||
6+ process . env . WIN_SIGNING_ENABLED !== 'true'
7+ ) {
58 return ;
69 }
710
You can’t perform that action at this time.
0 commit comments