forked from stackblitz-labs/bolt.diy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotarize.cjs
31 lines (26 loc) · 945 Bytes
/
notarize.cjs
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
const { notarize } = require('@electron/notarize');
exports.default = async function notarizing(context) {
const { electronPlatformName, appOutDir } = context;
if (electronPlatformName !== 'darwin') {
return;
}
// Skip notarization when identity is null (development build)
if (!context.packager.config.mac || context.packager.config.mac.identity === null) {
console.log('Skipping notarization: identity is null');
return;
}
const appName = context.packager.appInfo.productFilename;
const appBundleId = context.packager.config.appId;
try {
console.log(`Notarizing ${appBundleId} found at ${appOutDir}/${appName}.app`);
await notarize({
tool: 'notarytool',
appPath: `${appOutDir}/${appName}.app`,
teamId: process.env.APPLE_TEAM_ID,
});
console.log(`Done notarizing ${appBundleId}`);
} catch (error) {
console.error('Notarization failed:', error);
throw error;
}
};