Skip to content

Commit 0332d1c

Browse files
build(notarize): update notarize-script
1 parent 9b4e741 commit 0332d1c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: scripts/notarize.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
require('dotenv').config();
21
const { notarize } = require('@electron/notarize');
32

43
exports.default = async function notarizing(context) {
@@ -14,8 +13,9 @@ exports.default = async function notarizing(context) {
1413
return await notarize({
1514
appBundleId: 'education.lumi.lumi',
1615
appPath: `${appOutDir}/${appName}.app`,
17-
appleId: process.env.APPLEID,
18-
appleIdPassword: process.env.APPLEIDPASSWORD
16+
appleId: process.env.APPLE_ID,
17+
appleIdPassword: process.env.APPLE_ID_PASSWORD,
18+
teamId: process.env.APPLE_TEAM_ID
1919
// ascProvider: process.env.APPLE_ASCPROVIDER
2020
});
2121
}

0 commit comments

Comments
 (0)