mirror of
https://github.com/usebruno/bruno.git
synced 2026-07-01 16:44:16 +00:00
chore: change app builder to bruno team (#8218)
This commit is contained in:
@@ -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,
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user