21 lines
581 B
JavaScript
21 lines
581 B
JavaScript
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',
|
|
appBundleId: 'org.whalebird.desktop',
|
|
ascProvider: process.env.ASC_PROVIDER,
|
|
appPath: `${appOutDir}/${appName}.app`,
|
|
appleId: process.env.APPLE_ID,
|
|
appleIdPassword: process.env.APPLE_PASSWORD,
|
|
teamId: process.env.TEAM_ID
|
|
})
|
|
}
|