1
0
mirror of https://github.com/bitwarden/directory-connector synced 2025-12-10 05:13:17 +00:00

use env variable for apple id password

This commit is contained in:
Kyle Spearrin
2020-12-03 23:10:30 -05:00
parent 87bdc88e22
commit 19e1049566

View File

@@ -6,12 +6,13 @@ exports.default = async function notarizing(context) {
if (electronPlatformName !== 'darwin') { if (electronPlatformName !== 'darwin') {
return; return;
} }
const appleId = process.env.APPLEID; const appleId = process.env.APPLE_ID_USERNAME || process.env.APPLEID;
const appleIdPassword = process.env.APPLE_ID_PASSWORD || `@keychain:AC_PASSWORD`;
const appName = context.packager.appInfo.productFilename; const appName = context.packager.appInfo.productFilename;
return await notarize({ return await notarize({
appBundleId: 'com.bitwarden.directory-connector', appBundleId: 'com.bitwarden.directory-connector',
appPath: `${appOutDir}/${appName}.app`, appPath: `${appOutDir}/${appName}.app`,
appleId: appleId, appleId: appleId,
appleIdPassword: `@keychain:AC_PASSWORD`, appleIdPassword: appleIdPassword,
}); });
}; };