From 4f01605007b1955c5952babef0c1078809a3a87b Mon Sep 17 00:00:00 2001 From: maskarb Date: Thu, 30 Nov 2023 16:16:45 -0500 Subject: [PATCH] remove . from tag regex --- .github/workflows/build-and-publish.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-and-publish.yaml b/.github/workflows/build-and-publish.yaml index ca694ecfe..731ada5f3 100644 --- a/.github/workflows/build-and-publish.yaml +++ b/.github/workflows/build-and-publish.yaml @@ -4,9 +4,9 @@ on: push: branches: - 'main' - tags: # run on any tag that starts with `v.` but not tags that end with `-downstream` - - 'v.**' - - '!v.**-downstream' + tags: # run on any tag that starts with `v` but not tags that end with `-downstream` + - 'v**' + - '!v**-downstream' jobs: build-and-publish: