mirror of
https://github.com/hcengineering/platform.git
synced 2024-11-22 11:42:30 +03:00
20 lines
569 B
JavaScript
20 lines
569 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;
|
||
|
|
||
|
console.log('Starting custom notarization process...')
|
||
|
return await notarize({
|
||
|
appPath: `${appOutDir}/${appName}.app`,
|
||
|
appleId: process.env.APPLE_ID,
|
||
|
appleIdPassword: process.env.APPLE_ID_APP_PASS,
|
||
|
teamId: process.env.TEAM_ID
|
||
|
});
|
||
|
};
|