Skip to content

Commit cbc812b

Browse files
authored
chore: change app builder to bruno team (#8218)
1 parent 5777306 commit cbc812b

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

packages/bruno-electron/electron-builder-config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const config = {
3535
],
3636
icon: 'resources/icons/mac/icon.icns',
3737
hardenedRuntime: true,
38-
identity: 'Anoop MD (W7LPPWA48L)',
38+
identity: 'Bruno Software, Inc. (P3WTZH48ZB)',
3939
entitlements: 'resources/entitlements.mac.plist',
4040
entitlementsInherit: 'resources/entitlements.mac.plist',
4141
notarize: false,

packages/bruno-electron/notarize.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,20 +17,22 @@ const notarize = async function (params) {
1717
}
1818

1919
console.log(`Notarizing ${appId} found at ${appPath} using Apple ID ${process.env.APPLE_ID}`);
20-
20+
const teamId = 'P3WTZH48ZB';
2121
try {
2222
await electron_notarize.notarize({
23+
tool: 'notarytool',
2324
appBundleId: appId,
2425
appPath: appPath,
2526
appleId: process.env.APPLE_ID,
2627
appleIdPassword: process.env.APPLE_ID_PASSWORD,
27-
ascProvider: 'W7LPPWA48L'
28+
ascProvider: teamId,
29+
teamId: teamId
2830
});
2931
} catch (error) {
3032
console.error(error);
3133
}
3234

33-
console.log(`Done notarizing ${appId}`);
35+
console.log(`Done notarizing ${appPath}`);
3436
};
3537

3638
module.exports = notarize;

0 commit comments

Comments
 (0)