Skip to content

Commit

Permalink
update aftersign hook
Browse files Browse the repository at this point in the history
  • Loading branch information
jthrilly committed Apr 23, 2024
1 parent 1f7e514 commit bde5ad3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build-resources/scripts/afterSignHook.js
Expand Up @@ -5,7 +5,7 @@ const path = require('path');
const electronNotarize = require('@electron/notarize');

async function note(params) {
// Only notarize the app on Mac OS only.
// Only notarize the app on macOS.
if (process.platform !== 'darwin') {
return;
}
Expand All @@ -22,9 +22,9 @@ async function note(params) {
tool: 'notarytool',
appBundleId: 'NetworkCanvasArchitect',
appPath,
appleApiKey: '~/.private_keys/AuthKey_J58L47W6H9.p8',
appleApiKeyId: 'J58L47W6H9', // This is taken from the filename of the .p8 file in your icloud drive
appleApiIssuer: '69a6de92-60bf-47e3-e053-5b8c7c11a4d1',
appleApiKey: '~/.private_keys/AuthKey_A78M67RCH9.p8',
appleApiKeyId: 'A78M67RCH9', // Taken from https://appstoreconnect.apple.com/access/integrations/api
appleApiIssuer: '69a6de92-60bf-47e3-e053-5b8c7c11a4d1',// As above
});

console.log('Done notarizing Architect');
Expand Down

0 comments on commit bde5ad3

Please sign in to comment.