diff options
author | Sven-Hendrik Haase <svenstaro@gmail.com> | 2021-08-29 03:31:20 +0000 |
---|---|---|
committer | Sven-Hendrik Haase <svenstaro@gmail.com> | 2021-08-29 03:31:20 +0000 |
commit | ae25946ad9b952b7dc91a3598c75b9562090178f (patch) | |
tree | 2b2e8bf8e84612145cdfe5dc0494a0524ae9c0bf | |
parent | Revert "Run CI on push only" (diff) | |
download | miniserve-ae25946ad9b952b7dc91a3598c75b9562090178f.tar.gz miniserve-ae25946ad9b952b7dc91a3598c75b9562090178f.zip |
Run CI on pull_request as well
Turns out we need this as otherwise we'd get no CI at all for pull requests. Who woulda thunk.
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/build-release-binaries.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build-release-binaries.yml b/.github/workflows/build-release-binaries.yml index 5085246..efe69e9 100644 --- a/.github/workflows/build-release-binaries.yml +++ b/.github/workflows/build-release-binaries.yml @@ -1,6 +1,6 @@ name: Build release binaries (and publish them if this is a tag) -on: push +on: [push, pull_request] jobs: binaries: |