From d40e229fb0dbe229c1350676b4797953273e35b0 Mon Sep 17 00:00:00 2001 From: Oliver Holworthy <1216955+oliverholworthy@users.noreply.github.com> Date: Thu, 22 Jun 2023 22:26:35 +0100 Subject: [PATCH] Update tag pattern to match release versions only --- .github/workflows/packages.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/packages.yaml b/.github/workflows/packages.yaml index d97cb65c4..9d84dc8ef 100644 --- a/.github/workflows/packages.yaml +++ b/.github/workflows/packages.yaml @@ -7,7 +7,7 @@ on: - main - release* tags: - - v* + - "v[0-9]+.[0-9]+.[0-9]+" pull_request: branches: [main]