From 61829a5efe2d30531a015cebefcb2ad3735cd2e7 Mon Sep 17 00:00:00 2001 From: HenryNguyen5 <6404866+HenryNguyen5@users.noreply.github.com> Date: Fri, 14 Jan 2022 19:26:19 -0500 Subject: [PATCH] Restrict pushes to particular branches and tags --- .github/workflows/build-publish.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-publish.yml b/.github/workflows/build-publish.yml index 0afdb240e51..10c293c78af 100644 --- a/.github/workflows/build-publish.yml +++ b/.github/workflows/build-publish.yml @@ -3,12 +3,12 @@ name: 'Build Chainlink and Publish' on: # Mimics old circleci behaviour push: - # tags: - # - 'v*' - # branches: - # - master - # - develop - # - 'release/*' + tags: + - 'v*' + branches: + - master + - develop + - 'release/*' jobs: build-publish-chainlink: