2020-12-30 22:19:12 +01:00
|
|
|
exports.default = async function (configuration) {
|
2021-01-15 18:19:34 +01:00
|
|
|
if (parseInt(process.env.ELECTRON_BUILDER_SIGN) === 1 && configuration.path.slice(-4) == ".exe") {
|
2021-01-15 18:42:44 +01:00
|
|
|
console.log(`[*] Signing file: ${configuration.path}`);
|
2021-01-06 19:58:44 +01:00
|
|
|
require("child_process").execSync(
|
2021-09-16 19:15:05 +02:00
|
|
|
`azuresigntool sign -v ` +
|
2021-01-06 19:58:44 +01:00
|
|
|
`-kvu ${process.env.SIGNING_VAULT_URL} ` +
|
|
|
|
`-kvi ${process.env.SIGNING_CLIENT_ID} ` +
|
|
|
|
`-kvt ${process.env.SIGNING_TENANT_ID} ` +
|
|
|
|
`-kvs ${process.env.SIGNING_CLIENT_SECRET} ` +
|
|
|
|
`-kvc ${process.env.SIGNING_CERT_NAME} ` +
|
|
|
|
`-fd ${configuration.hash} ` +
|
|
|
|
`-du ${configuration.site} ` +
|
|
|
|
`-tr http://timestamp.digicert.com ` +
|
|
|
|
`${configuration.path}`,
|
|
|
|
{
|
|
|
|
stdio: "inherit",
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
2020-12-30 22:19:12 +01:00
|
|
|
};
|