mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 12:38:39 -09:00
16 lines
535 B
JavaScript
Vendored
16 lines
535 B
JavaScript
Vendored
const { notarize } = require("@electron/notarize");
|
|
|
|
exports.default = async function notarizing(context) {
|
|
const { electronPlatformName, appOutDir } = context;
|
|
if (electronPlatformName !== "darwin" || !process.env.APPLE_ID || !process.env.APPLE_PASSWORD) {
|
|
return;
|
|
}
|
|
|
|
const appName = context.packager.appInfo.productFilename;
|
|
return await notarize({
|
|
appBundleId: "co.zeit.hyper",
|
|
appPath: `${appOutDir}/${appName}.app`,
|
|
appleId: process.env.APPLE_ID,
|
|
appleIdPassword: process.env.APPLE_PASSWORD
|
|
});
|
|
};
|