slackgmailskypefacebook-workplaceoutlookemailmicrosoft-teamsdiscordmessengercustom-servicesmacoslinuxwindowsinboxwhatsappicloudtweetdeckhipchattelegramhangouts
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
501 B
18 lines
501 B
const { notarize } = require('electron-notarize'); |
|
|
|
exports.default = async function notarizing(context) { |
|
const { electronPlatformName, appOutDir } = context; |
|
if (electronPlatformName !== 'darwin') { |
|
return; |
|
} |
|
|
|
const appName = context.packager.appInfo.productFilename; |
|
|
|
return await notarize({ |
|
appBundleId: 'com.grupovrs.ramboxce', |
|
appPath: `${appOutDir}/${appName}.app`, |
|
appleId: '[email protected]', |
|
appleIdPassword: process.env.APPLE_ID_PWD, |
|
ascProvider: '7F292FPD69' |
|
}); |
|
};
|
|
|