We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e80f244 commit 7b28faeCopy full SHA for 7b28fae
electron-app/scripts/windowsCustomSign.js
@@ -1,6 +1,10 @@
1
const childProcess = require('child_process');
2
3
exports.default = async function (configuration) {
4
+ if (!process.env.GITHUB_ACTIONS) {
5
+ return;
6
+ }
7
+
8
const SIGNTOOL_PATH = process.env.SIGNTOOL_PATH;
9
const INSTALLER_CERT_WINDOWS_CER = process.env.INSTALLER_CERT_WINDOWS_CER;
10
const CERT_PASSWORD = process.env.WIN_CERT_PASSWORD;
0 commit comments