Skip to content
Merged
Changes from all commits
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
4 changes: 1 addition & 3 deletions packages/suite-desktop-core/scripts/notarize.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,11 @@ const notarizeAfterSignHook: Hooks['afterSign'] = context => {

return notarize({
tool: 'notarytool',
appBundleId: 'io.trezor.TrezorSuite',
appPath,
appleId: process.env.APPLEID,
appleIdPassword: process.env.APPLEIDPASS,
teamId: process.env.APPLETEAMID,
// TODO fix: notarize tool is known to be working, but TS fails: no overload matches this call
} as any);
});
};

export default notarizeAfterSignHook;