Skip to content

Commit

Permalink
chore(workflow): skip notarize for mac build
Browse files Browse the repository at this point in the history
  • Loading branch information
fullstackninja864 committed Nov 23, 2023
1 parent 71e9806 commit 2a4bd9a
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions electron-app/assets/notarize.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ exports.default = async function notarizeMacOS(context) {
return;
}

const appName = context.packager.appInfo.productFilename;
// const appName = context.packager.appInfo.productFilename;

await notarize({
appBundleId: build.appId,
appPath: `${appOutDir}/${appName}.app`,
appleId: process.env.APPLE_ID,
appleIdPassword: process.env.APPLE_ID_PASS,
});
// await notarize({
// appBundleId: build.appId,
// appPath: `${appOutDir}/${appName}.app`,
// appleId: process.env.APPLE_ID,
// appleIdPassword: process.env.APPLE_ID_PASS,
// });
};

0 comments on commit 2a4bd9a

Please sign in to comment.