2019-07-24 23:29:25 +02:00
|
|
|
require('dotenv').config();
|
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;
|
|
|
|
}
|
2019-07-24 23:29:25 +02:00
|
|
|
const appleId = process.env.APPLEID;
|
2019-07-24 22:37:23 +02:00
|
|
|
const appName = context.packager.appInfo.productFilename;
|
2019-08-02 14:41:53 +02:00
|
|
|
const appPath = `${appOutDir}/${appName}.app`;
|
|
|
|
console.log('Notarizing ' + appPath);
|
2019-07-24 22:37:23 +02:00
|
|
|
return await notarize({
|
|
|
|
appBundleId: 'com.bitwarden.desktop',
|
2019-08-02 14:41:53 +02:00
|
|
|
appPath: appPath,
|
2019-07-24 23:29:25 +02:00
|
|
|
appleId: appleId,
|
|
|
|
appleIdPassword: `@keychain:AC_PASSWORD`,
|
2019-07-24 22:37:23 +02:00
|
|
|
});
|
|
|
|
};
|