1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-30 08:10:34 +01:00
bitwarden-browser/scripts/notarize.js

16 lines
559 B
JavaScript
Raw Normal View History

2019-07-24 22:37:23 +02:00
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: 'com.bitwarden.desktop',
appPath: appOutDir + '/' + appName + '.app',
appleId: '@keychain:"Apple Id Notarization Id"',
appleIdPassword: '@keychain:"Apple Id Notarization Password"',
});
};