aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows
Commit message (Collapse)AuthorAge
...
* Run ALL builds if no OSes were chosen (manual trigger) (#1529)Libravatar Vijay Raghavan Aravamudhan2021-06-16
| | | | | | | | Manual trigger no longer looks for 'force build' magic message content. Only run 'check_updates' for nightly branch (for either schedule or manual trigger) Optimizing build: 1) git checkout fetch depth 2) better conditions for skipping builds
* Added ability to run specific OS builds for manual triggerLibravatar Vijay A2021-06-15
| | | | | This forced us to split the jobs into multiple copies (one per OS) to avoid complex conditional logic in 'if' blocks.
* Skip notarization of the build artifact if not building for the main repo ↵Libravatar Vijay A2021-06-15
| | | | (ie building on a forked repo)..
* Upgraded some npm modules (#1525)Libravatar Vijay Raghavan Aravamudhan2021-06-13
| | | | * Update the browserslist data every night * Change the support browsers list to 'last 2 Chrome versions' - in a bid to keep transpiling output size and time to a smaller number.
* Pass --publish never for PR builds (#1521)Libravatar Kristóf Marussy2021-06-12
| | | | | | Trying to fix the GitHub Personal Access Token is not set, neither programmatically, nor using env "GH_TOKEN" error.
* Bypassed code signing since that is also incorrect in GH settings.Libravatar Vijay A2021-06-12
|
* Commented out the env vars that trigger code-signing.Libravatar Vijay A2021-06-11
|
* Fixing incorrect expressionLibravatar Vijay A2021-06-10
|
* Added ability to force a version bump on the nightly branch based on ↵Libravatar Vijay A2021-06-10
| | | | 'version bump' phrase present in trigger message.
* Builds using GitHub actions (#1467)Libravatar Vijay Raghavan Aravamudhan2021-06-08
* 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')