mirror of
https://github.com/responsively-org/responsively-app
synced 2024-11-14 00:17:12 +00:00
18 lines
497 B
JavaScript
18 lines
497 B
JavaScript
require('dotenv').config();
|
|
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 notarize({
|
|
appBundleId: 'app.responsively',
|
|
appPath: `${appOutDir}/${appName}.app`,
|
|
appleId: process.env.APPLEID,
|
|
appleIdPassword: process.env.APPLEIDPASS,
|
|
});
|
|
};
|