Skip to content

Commit

Permalink
chore(workflow): skip notarize for mac build (#1274)
Browse files Browse the repository at this point in the history
* chore(workflow): skip notarize for mac build

* updated app version
  • Loading branch information
fullstackninja864 authored Nov 23, 2023
1 parent 71e9806 commit ecca744
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 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,
// });
};
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "defi-wallet",
"version": "4.0.0",
"version": "4.0.1",
"description": "DeFi Wallet",
"main": "./electron-app/build/electron-app/index.js",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion webapp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "defi-wallet",
"version": "4.0.0",
"version": "4.0.1",
"description": "DeFi Wallet",
"author": {
"name": "DeFiChain Foundation",
Expand Down

0 comments on commit ecca744

Please sign in to comment.