We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3a7f4c commit 98a2182Copy full SHA for 98a2182
build/notarize.js
@@ -1,7 +1,8 @@
1
+/*eslint-env node */
2
const { notarize } = require('electron-notarize');
3
4
exports.default = async function notarizing(context) {
- const { electronPlatformName, appOutDir } = context;
5
+ const { electronPlatformName, appOutDir } = context;
6
if (electronPlatformName !== 'darwin') {
7
return;
8
}
@@ -21,6 +22,8 @@ exports.default = async function notarizing(context) {
21
22
const appName = context.packager.appInfo.productFilename;
23
24
return await notarize({
25
+ tool: 'notarytool',
26
+ teamId: process.env.APPLE_TEAM_ID,
27
appBundleId: 'net.webrecorder.archiveweb.page',
28
appPath: `${appOutDir}/${appName}.app`,
29
appleId: process.env.APPLE_ID,
0 commit comments