20 lines
579 B
JavaScript
20 lines
579 B
JavaScript
require('dotenv').config();
|
|
const { notarize } = require('electron-notarize');
|
|
|
|
exports.default = async function notarizing(context) {
|
|
const { electronPlatformName, appOutDir } = context;
|
|
if (electronPlatformName !== 'darwin') {
|
|
return;
|
|
}
|
|
|
|
const appName = context.packager.appInfo.productFilename;
|
|
|
|
return await notarize({
|
|
tool: 'notarytool',
|
|
teamId: process.env.APPLE_TEAM_ID,
|
|
appBundleId: 'dev.zoo.modeling-app',
|
|
appPath: `${appOutDir}/${appName}.app`,
|
|
appleId: process.env.APPLE_ID,
|
|
appleIdPassword: process.env.APPLE_PASSWORD,
|
|
});
|
|
}; |