mirror of
https://github.com/zulip/zulip-desktop.git
synced 2025-10-28 10:33:39 +00:00
23 lines
576 B
JavaScript
23 lines
576 B
JavaScript
const path = require('path');
|
|
const dotenv = require('dotenv');
|
|
|
|
dotenv.config({path: path.join(__dirname, '/../.env')});
|
|
|
|
const {notarize} = require('electron-notarize');
|
|
|
|
exports.default = async function (context) {
|
|
const {electronPlatformName, appOutDir} = context;
|
|
if (electronPlatformName !== 'darwin') {
|
|
return;
|
|
}
|
|
|
|
const appName = context.packager.appInfo.productFilename;
|
|
|
|
return notarize({
|
|
appBundleId: 'org.zulip.zulip-electron',
|
|
appPath: `${appOutDir}/${appName}.app`,
|
|
appleId: process.env.APPLE_ID,
|
|
appleIdPassword: process.env.APPLE_ID_PASS
|
|
});
|
|
};
|