From 280ac2f8970bc14edf45b06fc6fdb24c780f727b Mon Sep 17 00:00:00 2001 From: Max Meinhold Date: Sat, 17 Apr 2021 01:02:22 -0400 Subject: [PATCH] Trigger prod deploys on new `v*` tags --- .github/workflows/deploy.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 9565b02..6958cef 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -1,18 +1,18 @@ name: Trigger Builds on Release -# Trigger builds on okd only on new releases -# Assumes the branch is "master" +# Trigger builds on okd only on new releases (tags starting with `v`) # Uses secrets.OKD_BUILD_HOOK to know where to send the event to # OKD_BUILD_HOOK should be a generic build hook -on: - release: - types: - - released +on: + push: + tags: + - v* jobs: trigger_build: name: trigger build runs-on: ubuntu-latest + steps: # Grab committer and author information from the commit - name: get commit