aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Amine Mouafik <amine@mouafik.fr>2020-04-27 00:00:30 +0000
committerLibravatar Amine Mouafik <amine@mouafik.fr>2020-04-27 00:00:30 +0000
commit03279b302db5dbda0dcb37060176f60dab4938ea (patch)
treebaa36d9f765f4b9b2e506bf5cdef9ec2849607c2
parent5.5.0 (diff)
downloadferdium-app-03279b302db5dbda0dcb37060176f60dab4938ea.tar.gz
ferdium-app-03279b302db5dbda0dcb37060176f60dab4938ea.tar.zst
ferdium-app-03279b302db5dbda0dcb37060176f60dab4938ea.zip
5.5.0 with macOS properly notarized
-rw-r--r--CHANGELOG.md1
-rw-r--r--build-helpers/notarize.js3
2 files changed, 2 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0c77abc10..3e573ea76 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -71,6 +71,7 @@
71### Build changes 71### Build changes
72- Add retry commands to flaky build steps (#498) 72- Add retry commands to flaky build steps (#498)
73- Run utility scripts pre-commit instead of pre-push (#515) 73- Run utility scripts pre-commit instead of pre-push (#515)
74- Sign Windows binaries (#635, #633, #112)
74 75
75# [5.5.0-gm.2](https://github.com/getferdi/ferdi/compare/v5.5.0-gm...v5.5.0-gm.2) (2020-04-23) 76# [5.5.0-gm.2](https://github.com/getferdi/ferdi/compare/v5.5.0-gm...v5.5.0-gm.2) (2020-04-23)
76### Features 77### Features
diff --git a/build-helpers/notarize.js b/build-helpers/notarize.js
index 26a627bea..fc463f749 100644
--- a/build-helpers/notarize.js
+++ b/build-helpers/notarize.js
@@ -2,8 +2,7 @@ const { notarize } = require("electron-notarize");
2 2
3exports.default = async function notarizing(context) { 3exports.default = async function notarizing(context) {
4 const { electronPlatformName, appOutDir } = context; 4 const { electronPlatformName, appOutDir } = context;
5 const isTagBuild = process.env.TRAVIS_TAG; 5 if (electronPlatformName !== "darwin" || process.env.TRAVIS_BRANCH !== 'release') {
6 if (electronPlatformName !== "darwin" || !isTagBuild) {
7 return; 6 return;
8 } 7 }
9 8