From 16e0fcde1f229720da51881bf794ec78edc99e78 Mon Sep 17 00:00:00 2001 From: Roman Khimov Date: Wed, 21 Aug 2019 20:02:43 +0300 Subject: [PATCH] circleci: update tag specs in workflows Use go-style version tags as suggested by @im-kulikov. --- .circleci/config.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 0731e969d..0723232c6 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -97,26 +97,26 @@ workflows: - vet: filters: tags: - only: /[0-9]+\.[0-9]+\.[0-9]+/ + only: v/[0-9]+\.[0-9]+\.[0-9]+/ - lint: filters: tags: - only: /[0-9]+\.[0-9]+\.[0-9]+/ + only: v/[0-9]+\.[0-9]+\.[0-9]+/ - test_1_11: filters: tags: - only: /[0-9]+\.[0-9]+\.[0-9]+/ + only: v/[0-9]+\.[0-9]+\.[0-9]+/ - test_1_12: filters: tags: - only: /[0-9]+\.[0-9]+\.[0-9]+/ + only: v/[0-9]+\.[0-9]+\.[0-9]+/ - build_cli: filters: tags: - only: /[0-9]+\.[0-9]+\.[0-9]+/ + only: v/[0-9]+\.[0-9]+\.[0-9]+/ - build_image: requires: - build_cli filters: tags: - only: /[0-9]+\.[0-9]+\.[0-9]+/ + only: v/[0-9]+\.[0-9]+\.[0-9]+/