summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrejbasket <39080670+rejbasket@users.noreply.github.com>2023-05-11 20:11:54 +0200
committerGitHub <noreply@github.com>2023-05-11 20:11:54 +0200
commit5da79b2e5c72aea65da63138f7cb4efa36f8692c (patch)
tree5948818a9c51b2b395cea168f93e56eaa5c31e7b
parentc799b798bc01ac9fc307a1dbc3c1ae68f1224669 (diff)
disable electron-builder signing (#2270)
-rw-r--r--.github/workflows/build.yml2
-rw-r--r--electron/package.json1
2 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 2bb0fe38..1076a1f0 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -182,6 +182,8 @@ jobs:
echo "${{ env.pythonLocation }}/bin" >> $GITHUB_PATH
- shell: bash
run: |
+ # disable electron-builder signing
+ #export CSC_IDENTITY_AUTO_DISCOVERY=false
make dist
env:
BUILD: osx
diff --git a/electron/package.json b/electron/package.json
index 083c3dd9..7a0b318b 100644
--- a/electron/package.json
+++ b/electron/package.json
@@ -45,6 +45,7 @@
],
"hardenedRuntime": true,
"gatekeeperAssess": false,
+ "strictVerify": false,
"entitlements": "build/electron-entitlements.plist",
"entitlementsInherit": "build/electron-entitlements.plist"
}