2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 03:29:00 +00:00
books/build/notarize.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
562 B
JavaScript
Raw Normal View History

const { notarize } = require('electron-notarize');
exports.default = async (context) => {
const { electronPlatformName, appOutDir } = context;
if (
electronPlatformName !== 'darwin' ||
!parseInt(process.env.APPLE_NOTARIZE)
) {
return;
}
const appName = context.packager.appInfo.productFilename;
return await notarize({
2020-01-02 17:36:00 +00:00
appBundleId: 'io.frappe.books',
appPath: `${appOutDir}/${appName}.app`,
appleId: process.env.APPLE_ID,
appleIdPassword: process.env.APPLE_APP_PASSWORD,
teamId: process.env.APPLE_TEAM_ID,
});
};