diff options
author | Patrick Griffis <tingping@tingping.se> | 2023-11-03 14:13:36 -0500 |
---|---|---|
committer | Patrick <tingping@tingping.se> | 2023-11-03 14:23:55 -0500 |
commit | 44d14a436bf33c76288ca22bd9a787aca8120dd0 (patch) | |
tree | 68d4a6ac291f45ee0ec110d7081d01f67b508d43 /.github/workflows/ubuntu-build.yml | |
parent | a1f154cd5ee63ec6b9ac154b8dc6d5a5d97c2c28 (diff) |
CI: Reduce duplicate builds
Diffstat (limited to '.github/workflows/ubuntu-build.yml')
-rw-r--r-- | .github/workflows/ubuntu-build.yml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/.github/workflows/ubuntu-build.yml b/.github/workflows/ubuntu-build.yml index 0e8deb34..cb6b5faa 100644 --- a/.github/workflows/ubuntu-build.yml +++ b/.github/workflows/ubuntu-build.yml @@ -1,5 +1,12 @@ name: Ubuntu Build -on: [push, pull_request] +on: + push: + branches: + - master + pull_request: + branches: + - master + jobs: ubuntu_build: runs-on: ubuntu-20.04 |