From 681274c650f4b3435468583ef2360390a719f891 Mon Sep 17 00:00:00 2001 From: Felix Rieseberg Date: Tue, 28 Nov 2023 09:19:19 -0800 Subject: [PATCH] Update identity --- forge.config.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/forge.config.ts b/forge.config.ts index 3ec21cdfa6..e68b200fad 100644 --- a/forge.config.ts +++ b/forge.config.ts @@ -95,7 +95,8 @@ const config: ForgeConfig = { OriginalFilename: 'Electron Fiddle', }, osxSign: { - identity: 'Developer ID Application: Felix Rieseberg (LT94ZKYDCJ)', + identity: + 'Developer ID Application: OpenJS Foundation, Inc. (UY52UFTVTM)', optionsForFile: (filePath) => ['(Plugin).app', '(GPU).app', '(Renderer).app'].some((helper) => filePath.includes(helper), @@ -168,8 +169,9 @@ function notarizeMaybe() { return; } - if (!process.env.CI) { + if (!process.env.CI && !process.env.FORCE_NOTARIZATION) { // Not in CI, skipping notarization + console.log('Not in CI, skipping notarization'); return; }