* chore: add running windows desktop signing on windows hosted machine * check if app version is set properly * check env var setting * check 3 * fix version setting * temprorary remove the windows signing * fix: restore electron sign properties * digicert signing * fix keypair name * fix set output steps * fix: reusable workflow
8 lines
214 B
JavaScript
8 lines
214 B
JavaScript
exports.default = async function(configuration) {
|
|
if(configuration.path){
|
|
require("child_process").execSync(
|
|
`smctl sign --keypair-alias=snkeypair --input "${String(configuration.path)}"`
|
|
);
|
|
}
|
|
};
|