summaryrefslogtreecommitdiffstats
path: root/build-helpers
diff options
context:
space:
mode:
authorLibravatar Alphrag <34252790+Alphrag@users.noreply.github.com>2022-06-27 12:32:16 +0100
committerLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2022-06-27 20:07:10 +0530
commit1edf3b468735a01126b60f105941eb5dfe1c337e (patch)
treee81679a8263b79724121491ae969f5fe7e8c4604 /build-helpers
parentFix missing translations (#380) (diff)
downloadferdium-app-1edf3b468735a01126b60f105941eb5dfe1c337e.tar.gz
ferdium-app-1edf3b468735a01126b60f105941eb5dfe1c337e.tar.zst
ferdium-app-1edf3b468735a01126b60f105941eb5dfe1c337e.zip
Change notarization runner
Use the `notarytool` instead of the `legacy` version in `electron-notarize`
Diffstat (limited to 'build-helpers')
-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 });