From 02690113fb3ef66c34cffd8cac89146081203342 Mon Sep 17 00:00:00 2001 From: Tomer Zait Date: Sat, 6 Jan 2024 12:45:17 +0200 Subject: [PATCH] fix tag filter --- .github/workflows/publish.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 764e052..5af1f84 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -5,7 +5,8 @@ on: branches: - '**' tags: - - 'v[0-9]+.[0-9]+.*' # Trigger on tags like v1.0, 2.3, etc. + - 'v[0-9]+.[0-9]+' # Trigger on tags like v1.0, 2.3, etc. + - 'v[0-9]+.[0-9]+.*' # Trigger on tags like v1.0.0, 2.3.0, etc. permissions: contents: read