Skip to content

Commit

Permalink
chore: no need to try to sign on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
will-stone committed Nov 20, 2022
1 parent fdb2d17 commit f6ea212
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions forge.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,14 @@ const config: ForgeConfig = {
keychainProfile: 'AC_PASSWORD',
tool: 'notarytool',
},
osxSign: {
optionsForFile: () => ({
'entitlements': 'plist/entitlements.mac.plist',
'hardened-runtime': true,
}),
},
osxSign: process.env.CI
? undefined
: {
optionsForFile: () => ({
'entitlements': 'plist/entitlements.mac.plist',
'hardened-runtime': true,
}),
},
protocols: [
{
name: 'HTTP link',
Expand Down

0 comments on commit f6ea212

Please sign in to comment.