1
0
mirror of https://github.com/bitwarden/directory-connector synced 2025-12-05 23:53:21 +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') {
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;
return await notarize({
appBundleId: 'com.bitwarden.directory-connector',
appPath: `${appOutDir}/${appName}.app`,
appleId: appleId,
appleIdPassword: `@keychain:AC_PASSWORD`,
appleIdPassword: appleIdPassword,
});
};