windowsinboxwhatsappicloudtweetdeckhipchattelegramhangoutsslackgmailskypefacebook-workplaceoutlookemailmicrosoft-teamsdiscordmessengercustom-servicesmacoslinux
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.
17 lines
471 B
17 lines
471 B
5 years ago
|
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: 'saenzramiro@gmail.com',
|
||
|
appleIdPassword: process.env.APPLE_ID_PWD
|
||
|
});
|
||
|
};
|