import { notarize } from '@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({ appBundleId: 'net.blockbench.blockbench', appPath: `${appOutDir}/${appName}.app`, appleId: process.env.APPLEID, appleIdPassword: process.env.APPLEIDPASS, teamId: process.env.APPLETEAMID, }); };