Skip to content

Commit 90040b8

Browse files
committed
Try updating to new notarize
1 parent 0cd6980 commit 90040b8

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

azure-pipelines.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ jobs:
3333
CSC_KEY_PASSWORD: $(CSC_KEY_PASSWORD_MAC)
3434
CSC_LINK: w3c-certs-mac.p12
3535
APP_PW: $(APP_PW)
36+
APPLE_TEAM_ID: $(APPLE_TEAM_ID)
3637
GH_TOKEN: $(GH_TOKEN)
3738

3839

notarize.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const { notarize } = require('electron-notarize');
1+
const { notarize } = require('@electron/notarize');
22

33
exports.default = async function notarizing(context) {
44
const { electronPlatformName, appOutDir } = context;
@@ -9,9 +9,9 @@ exports.default = async function notarizing(context) {
99
const appName = context.packager.appInfo.productFilename;
1010

1111
return await notarize({
12-
appBundleId: 'W3Champions',
1312
appPath: `${appOutDir}/${appName}.app`,
1413
appleId: "[email protected]",
1514
appleIdPassword: process.env.APP_PW,
15+
teamId: process.env.APPLE_TEAM_ID,
1616
});
1717
};

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "w3champions",
3-
"version": "1.3.10",
3+
"version": "1.4.0",
44
"private": true,
55
"description": "Always stay up to date with this Launcher for the community Ladder Warcraft 3 Champions.",
66
"author": "Deespul LLC",
@@ -68,7 +68,7 @@
6868
"electron": "11.2.0",
6969
"electron-builder": "23.0.2",
7070
"electron-devtools-installer": "3.1.1",
71-
"electron-notarize": "1.0.0",
71+
"@electron/notarize": "2.3.2",
7272
"electron-rebuild": "2.3.4",
7373
"eslint": ">= 1.6.0 < 7.0.0",
7474
"eslint-plugin-vue": "7.4.1",

0 commit comments

Comments
 (0)