microsoft-teamsdiscordmessengercustom-servicesmacoslinuxwindowsinboxwhatsappicloudtweetdeckhipchattelegramhangoutsslackgmailskypefacebook-workplaceoutlookemail
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.
19 lines
501 B
19 lines
501 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: '[email protected]',
|
||
4 years ago
|
appleIdPassword: process.env.APPLE_ID_PWD,
|
||
|
ascProvider: '7F292FPD69'
|
||
5 years ago
|
});
|
||
4 years ago
|
};
|