Skip to content

Commit 7b28fae

Browse files
do not run custom signing locally
1 parent e80f244 commit 7b28fae

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Diff for: electron-app/scripts/windowsCustomSign.js

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
const childProcess = require('child_process');
22

33
exports.default = async function (configuration) {
4+
if (!process.env.GITHUB_ACTIONS) {
5+
return;
6+
}
7+
48
const SIGNTOOL_PATH = process.env.SIGNTOOL_PATH;
59
const INSTALLER_CERT_WINDOWS_CER = process.env.INSTALLER_CERT_WINDOWS_CER;
610
const CERT_PASSWORD = process.env.WIN_CERT_PASSWORD;

0 commit comments

Comments
 (0)