mirror of
https://github.com/bitwarden/browser.git
synced 2024-10-30 08:10:34 +01:00
16 lines
559 B
JavaScript
16 lines
559 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: 'com.bitwarden.desktop',
|
||
|
appPath: appOutDir + '/' + appName + '.app',
|
||
|
appleId: '@keychain:"Apple Id Notarization Id"',
|
||
|
appleIdPassword: '@keychain:"Apple Id Notarization Password"',
|
||
|
});
|
||
|
};
|