-
Notifications
You must be signed in to change notification settings - Fork 269
/
Copy pathnotarize.js
40 lines (33 loc) · 1.14 KB
/
notarize.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
37
38
39
40
const { notarize } = require('@electron/notarize');
const { AfterPackContext } = require('electron-builder');
const packageJson = require('../package.json');
const appBundleId = packageJson.build.appId;
function logNotarizingProgress(msg) {
// biome-ignore lint/suspicious/noConsoleLog: log notarizing progress
console.log(` • notarizing ${msg}`);
}
/**
* @param {AfterPackContext} context
*/
const notarizeApp = async (context) => {
const { electronPlatformName, appOutDir } = context;
const appName = context.packager.appInfo.productFilename;
const isMacOS = electronPlatformName === 'darwin';
const shouldNotarize = process.env.NOTARIZE === 'true';
if (!shouldNotarize || !isMacOS) {
logNotarizingProgress(
'either should not notarize or not building for macOS',
);
return;
}
logNotarizingProgress('process started');
return await notarize({
appBundleId,
appPath: `${appOutDir}/${appName}.app`,
appleId: process.env.APPLE_ID_USERNAME,
appleIdPassword: process.env.APPLE_ID_PASSWORD,
teamId: process.env.APPLE_ID_TEAM_ID,
tool: 'notarytool',
});
};
exports.default = notarizeApp;