aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--build-helpers/notarize.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/build-helpers/notarize.js b/build-helpers/notarize.js
index 21b1466e7..5cfc6b541 100644
--- a/build-helpers/notarize.js
+++ b/build-helpers/notarize.js
@@ -10,9 +10,10 @@ exports.default = async function notarizing(context) {
10 const { notarize } = require('electron-notarize'); 10 const { notarize } = require('electron-notarize');
11 11
12 await notarize({ 12 await notarize({
13 tool: 'notarytool',
13 appBundleId: 'org.ferdium.ferdium-app', 14 appBundleId: 'org.ferdium.ferdium-app',
14 appPath: `${appOutDir}/${appName}.app`, 15 appPath: `${appOutDir}/${appName}.app`,
15 ascProvider: '55E9FPJ93P', 16 teamId: '55E9FPJ93P',
16 appleId: process.env.APPLEID, 17 appleId: process.env.APPLEID,
17 appleIdPassword: process.env.APPLEID_PASSWORD, 18 appleIdPassword: process.env.APPLEID_PASSWORD,
18 }); 19 });