Форк Rambox
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

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',
4 years ago
appleIdPassword: process.env.APPLE_ID_PWD,
ascProvider: '7F292FPD69'
});
4 years ago
};