-
Notifications
You must be signed in to change notification settings - Fork 157
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build.yml: Synchronize with github-cli's build.yml
- Loading branch information
Showing
1 changed file
with
11 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,17 @@ | ||
name: PulseView Artifact Builder Workflow | ||
name: Build PulseView artifacts | ||
|
||
on: | ||
push: | ||
workflow_dispatch: | ||
push: # When the repo itself has a new commit on the master branch | ||
branches: | ||
- master | ||
tags: # When a new tag was created | ||
workflow_dispatch: # When the workflow was started manually from github | ||
pull_request: | ||
types: | ||
- labeled # When a pull request received a new label (e.g. "provide_binaries") | ||
- synchronize # When a pull request's branch was updated with a new commit | ||
|
||
jobs: | ||
call-build-workflow: | ||
name: Sigrok artifact builder | ||
uses: sigrokproject/sigrok-build/.github/workflows/build.yml@master |