diff options
| author | Shyam Sunder <sgsunder1@gmail.com> | 2022-03-31 18:54:08 -0400 |
|---|---|---|
| committer | Shyam Sunder <sgsunder1@gmail.com> | 2022-03-31 18:54:08 -0400 |
| commit | 1b9ce79f4e79745d7992eef14e3ab4104bd74fe4 (patch) | |
| tree | da6bbb94cae2b9318460231104388782a72d4c7e | |
| parent | e746f09911cbe1c94055296310a96ab057daecdb (diff) | |
client+server: only trigger autobuild on master branch pushes
| -rw-r--r-- | .github/workflows/build-containers.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/build-containers.yml b/.github/workflows/build-containers.yml index 3dda368..c688a5f 100644 --- a/.github/workflows/build-containers.yml +++ b/.github/workflows/build-containers.yml @@ -1,5 +1,8 @@ name: Build Docker containers -on: [push] +on: + push: + branches: + - master jobs: build-client: name: Build and push client/ Docker container |