Skip to content

Commit 382f2b4

Browse files
author
Alexey Boyko
committed
Fix tag trigger for circleci
1 parent 99f369c commit 382f2b4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.circleci/config.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,17 @@ workflows:
1414
- golangci-lint/lint:
1515
filters:
1616
tags:
17-
only: /^v[0-9]+\.[0-9]+\.[0-9]+$/
17+
only: /^[0-9]+\.[0-9]+\.[0-9]+$/
1818
- test:
1919
filters:
2020
tags:
21-
only: /^v[0-9]+\.[0-9]+\.[0-9]+$/
21+
only: /^[0-9]+\.[0-9]+\.[0-9]+$/
2222
- release:
2323
filters:
2424
branches:
2525
ignore: /.*/
2626
tags:
27-
only: /^v[0-9]+\.[0-9]+\.[0-9]+$/
27+
only: /^[0-9]+\.[0-9]+\.[0-9]+$/
2828
requires:
2929
- golangci-lint/lint
3030
- test

0 commit comments

Comments
 (0)