Skip to content

Commit

Permalink
build: Update identity to OpenJS (#1509)
Browse files Browse the repository at this point in the history
Update identity
  • Loading branch information
felixrieseberg committed Nov 28, 2023
1 parent 5622127 commit b6d0e34
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions forge.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down Expand Up @@ -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;
}

Expand Down

0 comments on commit b6d0e34

Please sign in to comment.