From 84b1ded33c1d9a5614c461b64e179a4ba6cbb7af Mon Sep 17 00:00:00 2001 From: Blake Regalia Date: Wed, 8 Nov 2023 16:45:20 -0800 Subject: [PATCH] ci: filter tag with v prefix --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 94ef867..652a720 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -78,7 +78,7 @@ workflows: - build_and_test: filters: tags: - only: /[0-9.]+(-(a|b|rc)[0-9]+)?/ + only: /v[0-9.]+(-[\w-]+(\.[0-9]+)?)?/ context: - DockerHub - deploy_snapshot: @@ -86,7 +86,7 @@ workflows: - build_and_test filters: branches: - only: /((release|hotfix|support)/[0-9.]+(-(a|b|rc)[0-9]+)?|develop)/ + only: /((release|hotfix|support)/[0-9.]+(-[\w-]+(\.[0-9]+)?)?|develop)/ context: - DockerHub - deploy_release: @@ -94,7 +94,7 @@ workflows: - build_and_test filters: tags: - only: /[0-9.]+(-(a|b|rc)[0-9]+)?/ + only: /v[0-9.]+(-[\w-]+(\.[0-9]+)?)?/ branches: ignore: /.*/ context: