From bde5ad31a01b5dcd16d6367ee1d9cb269119f431 Mon Sep 17 00:00:00 2001 From: Joshua Melville Date: Tue, 23 Apr 2024 19:31:13 +0200 Subject: [PATCH] update aftersign hook --- build-resources/scripts/afterSignHook.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build-resources/scripts/afterSignHook.js b/build-resources/scripts/afterSignHook.js index 38c857e39..2296ad597 100644 --- a/build-resources/scripts/afterSignHook.js +++ b/build-resources/scripts/afterSignHook.js @@ -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; } @@ -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');