-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathnotarize.js
39 lines (32 loc) · 1.04 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
require('dotenv').config();
const fs = require('fs');
const { notarize: electronNotarize } = require('@electron/notarize');
const notarizeApp = async (context) => {
const { electronPlatformName, appOutDir } = context;
if (electronPlatformName !== 'darwin') {
return;
}
const appId = 'io.zasper.app';
const appName = context.packager.appInfo.productFilename;
const appPath = `${appOutDir}/${appName}.app`;
if (!fs.existsSync(appPath)) {
console.error(`Application not found at: ${appPath}`);
return;
}
console.log(
`Notarizing app with ID ${appId} located at ${appPath} using Apple ID ${process.env.APPLE_ID}`
);
try {
await electronNotarize({
appBundleId: appId,
appPath: appPath,
appleId: process.env.APPLE_ID,
appleIdPassword: process.env.APPLE_ID_PASSWORD,
ascProvider: '', // If applicable, add ASC provider here
});
} catch (error) {
console.error('Notarization Failed:', error);
}
console.log(`Notarization complete for ${appId}`);
};
module.exports = notarizeApp;