-
Notifications
You must be signed in to change notification settings - Fork 269
/
Copy pathafterSign.js
52 lines (42 loc) · 1.29 KB
/
afterSign.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
41
42
43
44
45
46
47
48
49
50
51
52
const { notarize } = require('@electron/notarize');
const { AfterPackContext } = require('electron-builder');
const builderConfig = require('../config/electron-builder');
const appBundleId = builderConfig.appId;
function logAfterSignProgress(msg) {
// biome-ignore lint/suspicious/noConsoleLog: log notarizing progress
console.log(` • [afterSign]: ${msg}`);
}
/**
* @param {AfterPackContext} context
*/
const afterSign = async (context) => {
logAfterSignProgress('Starting...');
const { appOutDir } = context;
const appName = context.packager.appInfo.productFilename;
const shouldNotarize = process.env.NOTARIZE === 'true';
if (!shouldNotarize) {
logAfterSignProgress(
'skipping notarize step as NOTARIZE env flag was not set',
);
return;
}
notarizeApp(appName, appOutDir);
logAfterSignProgress('Completed');
};
/**
* Notarizes the application
* @param {string} appOutDir
* @param {string} appName
*/
const notarizeApp = (appOutDir, appName) => {
logAfterSignProgress('notarizing app');
return 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',
});
};
module.exports = afterSign;