1
0
mirror of https://github.com/upscayl/upscayl.git synced 2025-02-21 21:19:31 +01:00

Add notarize

This commit is contained in:
Nayam Amarshe 2023-09-03 00:53:23 +05:30
parent 7481ddee71
commit 9d181520f7

18
scripts/notarize.js Normal file
View File

@ -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.upscayl.Upscayl",
appPath: `${appOutDir}/${appName}.app`,
appleId: process.env.APPLEID,
appleIdPassword: process.env.APPLEIDPASS,
});
};