mirror of
https://github.com/JannisX11/blockbench.git
synced 2025-01-18 15:26:19 +08:00
15 lines
479 B
JavaScript
15 lines
479 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({
|
||
|
appBundleId: 'net.blockbench.blockbench',
|
||
|
appPath: `${appOutDir}/${appName}.app`,
|
||
|
appleId: process.env.APPLEID,
|
||
|
appleIdPassword: process.env.APPLEIDPASS,
|
||
|
});
|
||
|
};
|