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