Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/bruno-electron/electron-builder-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
6 changes: 4 additions & 2 deletions packages/bruno-electron/notarize.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,19 @@ const notarize = async function (params) {

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: 'P3WTZH48ZB',
teamId: 'P3WTZH48ZB'
Comment thread
sid-bruno marked this conversation as resolved.
Outdated
});
Comment thread
sid-bruno marked this conversation as resolved.
} catch (error) {
console.error(error);
}

console.log(`Done notarizing ${appId}`);
console.log(`Done notarizing ${appPath}`);
};

module.exports = notarize;
Loading