Skip to content

Commit bdb0fed

Browse files
committed
Fix CircleCI tag building
Match any `v...` tags for releases. Signed-off-by: SuperQ <superq@gmail.com>
1 parent 480e9f5 commit bdb0fed

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.circleci/config.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ workflows:
7373
promu_opts: "-p linux/amd64 -p windows/amd64 -p linux/arm64 -p darwin/amd64 -p darwin/arm64 -p linux/386"
7474
filters:
7575
tags:
76-
ignore: /^v2(\.[0-9]+){2}(-.+|[^-.]*)$/
76+
ignore: /^v.*/
7777
branches:
7878
ignore: /^(main|release-.*|.*build-all.*)$/
7979
- prometheus/build:
@@ -83,8 +83,7 @@ workflows:
8383
branches:
8484
only: /^(main|release-.*|.*build-all.*)$/
8585
tags:
86-
only: /^v2(\.[0-9]+){2}(-.+|[^-.]*)$/
87-
86+
only: /^v.*/
8887
- codespell:
8988
filters:
9089
tags:
@@ -108,6 +107,6 @@ workflows:
108107
- build_all
109108
filters:
110109
tags:
111-
only: /^v[0-9]+(\.[0-9]+){2}(-.+|[^-.]*)$/
110+
only: /^v.*/
112111
branches:
113112
ignore: /.*/

0 commit comments

Comments
 (0)