forked from zingolabs/zingo-pc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
afterSignHook.js
36 lines (29 loc) · 901 Bytes
/
afterSignHook.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/* eslint-disable camelcase */
const fs = require("fs");
const electron_notarize = require("electron-notarize");
module.exports = async function (params) {
// Only notarize the app on Mac OS only.
if (process.platform !== "darwin") {
return;
}
//console.log('afterSign hook triggered', params);
// Same appId in electron-builder.
const appId = "co.zingo.pc";
const appPath = params.artifactPaths.find((p) => p.endsWith(".dmg"));
if (!fs.existsSync(appPath)) {
throw new Error(`Cannot find application at: ${appPath}`);
}
console.log(`Notarizing ${appId} found at ${appPath}`);
try {
await electron_notarize.notarize({
appBundleId: appId,
appPath,
appleId: "[email protected]",
appleIdPassword: "vdmd-**************",
});
} catch (error) {
console.error(error);
return;
}
console.log(`Done notarizing ${appId}`);
};