Skip to content

Commit

Permalink
Fix CircleCI tag building
Browse files Browse the repository at this point in the history
Match any `v...` tags for releases.

Signed-off-by: SuperQ <superq@gmail.com>
  • Loading branch information
SuperQ committed Apr 14, 2023
1 parent 480e9f5 commit bdb0fed
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ workflows:
promu_opts: "-p linux/amd64 -p windows/amd64 -p linux/arm64 -p darwin/amd64 -p darwin/arm64 -p linux/386"
filters:
tags:
ignore: /^v2(\.[0-9]+){2}(-.+|[^-.]*)$/
ignore: /^v.*/
branches:
ignore: /^(main|release-.*|.*build-all.*)$/
- prometheus/build:
Expand All @@ -83,8 +83,7 @@ workflows:
branches:
only: /^(main|release-.*|.*build-all.*)$/
tags:
only: /^v2(\.[0-9]+){2}(-.+|[^-.]*)$/

only: /^v.*/
- codespell:
filters:
tags:
Expand All @@ -108,6 +107,6 @@ workflows:
- build_all
filters:
tags:
only: /^v[0-9]+(\.[0-9]+){2}(-.+|[^-.]*)$/
only: /^v.*/
branches:
ignore: /.*/

0 comments on commit bdb0fed

Please sign in to comment.