mirror of
https://github.com/bitwarden/desktop.git
synced 2024-10-31 08:10:29 +01:00
26 lines
830 B
JavaScript
26 lines
830 B
JavaScript
require('dotenv').config();
|
|
const { notarize } = require('electron-notarize');
|
|
|
|
exports.default = run;
|
|
|
|
async function run(context) {
|
|
console.log('## After sign');
|
|
// console.log(context);
|
|
|
|
const appName = context.packager.appInfo.productFilename;
|
|
const appPath = `${context.appOutDir}/${appName}.app`;
|
|
const macBuild = context.electronPlatformName === 'darwin';
|
|
|
|
if (macBuild) {
|
|
console.log('### Notarizing ' + appPath);
|
|
const appleId = process.env.APPLE_ID_USERNAME || process.env.APPLEID;
|
|
const appleIdPassword = process.env.APPLE_ID_PASSWORD || `@keychain:AC_PASSWORD`;
|
|
return await notarize({
|
|
appBundleId: 'com.bitwarden.desktop',
|
|
appPath: appPath,
|
|
appleId: appleId,
|
|
appleIdPassword: appleIdPassword,
|
|
});
|
|
}
|
|
}
|