chore: change app builder to bruno team (#8218)

This commit is contained in:
Sid
2026-06-24 13:11:44 +05:30
committed by GitHub
parent 577730609c
commit cbc812b131
2 changed files with 6 additions and 4 deletions

View File

@@ -35,7 +35,7 @@ const config = {
],
icon: 'resources/icons/mac/icon.icns',
hardenedRuntime: true,
identity: 'Anoop MD (W7LPPWA48L)',
identity: 'Bruno Software, Inc. (P3WTZH48ZB)',
entitlements: 'resources/entitlements.mac.plist',
entitlementsInherit: 'resources/entitlements.mac.plist',
notarize: false,

View File

@@ -17,20 +17,22 @@ const notarize = async function (params) {
}
console.log(`Notarizing ${appId} found at ${appPath} using Apple ID ${process.env.APPLE_ID}`);
const teamId = 'P3WTZH48ZB';
try {
await electron_notarize.notarize({
tool: 'notarytool',
appBundleId: appId,
appPath: appPath,
appleId: process.env.APPLE_ID,
appleIdPassword: process.env.APPLE_ID_PASSWORD,
ascProvider: 'W7LPPWA48L'
ascProvider: teamId,
teamId: teamId
});
} catch (error) {
console.error(error);
}
console.log(`Done notarizing ${appId}`);
console.log(`Done notarizing ${appPath}`);
};
module.exports = notarize;