circleci: update tag specs in workflows

Use go-style version tags as suggested by @im-kulikov.
This commit is contained in:
Roman Khimov 2019-08-21 20:02:43 +03:00
parent 8ff9121ee5
commit 16e0fcde1f

View file

@ -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]+/