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.
@electron/notarize
electron-notarize
1 parent 8d01909 commit 5fd0209Copy full SHA for 5fd0209
after_sign_hook.js
@@ -29,13 +29,13 @@ module.exports = async function (params) {
29
console.log(`Notarizing ${appId} found at ${appPath}`); // eslint-disable-line no-console
30
31
try {
32
- const electron_notarize = require('electron-notarize');
+ const electron_notarize = require('@electron/notarize');
33
await electron_notarize.notarize({
34
- appBundleId: appId,
35
appPath: appPath,
+ // TODO: Move to using API key
36
appleId: process.env.NOTARIZATION_ID,
37
appleIdPassword: process.env.NOTARIZATION_PWD,
38
- ascProvider: 'AutomatticInc',
+ teamId: '99KV9Z6BKV',
39
});
40
} catch (error) {
41
console.error(error); // eslint-disable-line no-console
0 commit comments