Browse Source

Create notarize.js

qdn-metadata
AlphaX-Projects 3 years ago committed by GitHub
parent
commit
af52a8fd23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 18
      scripts/notarize.js

18
scripts/notarize.js

@ -0,0 +1,18 @@
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 await notarize({
appBundleId: 'org.qortal.QortalUi',
appPath: `${appOutDir}/${appName}.app`,
appleId: process.env.APPLEID,
appleIdPassword: process.env.APPLEIDPASS,
});
};
Loading…
Cancel
Save