Fix notarize script

This commit is contained in:
AkiraFukushima 2021-09-02 21:03:50 +09:00
parent a1423e49eb
commit 4dd606e1e7
2 changed files with 5 additions and 1 deletions

View File

@ -9,9 +9,11 @@ exports.default = async function notarizing(context) {
const appName = context.packager.appInfo.productFilename
return await notarize({
tool: 'legacy',
appBundleId: 'org.whalebird.desktop',
appPath: `${appOutDir}/${appName}.app`,
appleId: process.env.APPLE_ID,
appleIdPassword: process.env.APPLE_PASSWORD
appleIdPassword: process.env.APPLE_PASSWORD,
teamId: 'HB4N6B2YVM'
})
}

View File

@ -2,6 +2,8 @@
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>com.apple.security.cs.allow-jit</key>
<true/>
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
<true/>
</dict>