aboutsummaryrefslogtreecommitdiffstats
path: root/build-helpers
diff options
context:
space:
mode:
authorLibravatar Vijay Raghavan Aravamudhan <vraravam@users.noreply.github.com>2021-06-08 04:47:40 +0530
committerLibravatar GitHub <noreply@github.com>2021-06-08 04:47:40 +0530
commit76b9acc16543e873ba647c847b37a3e12ec20b11 (patch)
tree23fdedffcf8ee7435a76ba0e91b64ad05501075f /build-helpers
parentNew translations en-US.json (Korean) (diff)
downloadferdium-app-76b9acc16543e873ba647c847b37a3e12ec20b11.tar.gz
ferdium-app-76b9acc16543e873ba647c847b37a3e12ec20b11.tar.zst
ferdium-app-76b9acc16543e873ba647c847b37a3e12ec20b11.zip
Builds using GitHub actions (#1467)
* Using GH Actions for building, packaging and publishing for all 3 OSes (macos, ubuntu and windows). Handles PR builds, release builds, scheduled nightly builds and manual triggering from the web-ui. * Removed references to travis and appveyor and their respective config files. * Added ability to force rebuild nightlies without new version number. (This should allow us to rerun nightly builds with the same build number. Looks for the trigger comment to contain: 'force build' and 'nightly branch')
Diffstat (limited to 'build-helpers')
-rw-r--r--build-helpers/notarize.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/build-helpers/notarize.js b/build-helpers/notarize.js
index cb83808ad..d5a6027fb 100644
--- a/build-helpers/notarize.js
+++ b/build-helpers/notarize.js
@@ -2,7 +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 if (electronPlatformName !== "darwin" || (process.env.TRAVIS_BRANCH !== 'release' && process.env.TRAVIS_BRANCH !== 'nightly')) { 5 if (electronPlatformName !== "darwin" || (process.env.GIT_BRANCH_NAME !== 'release' && process.env.GIT_BRANCH_NAME !== 'nightly')) {
6 return; 6 return;
7 } 7 }
8 8