Skip to content

Commit

Permalink
Make 'v' tag prefix optional for CircleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
weavejester committed May 21, 2023
1 parent 3f4593d commit 694d5fa
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -281,31 +281,31 @@ workflows:
branches:
ignore: /.*/
tags:
only: /^v\d+\.\d+\.\d+$/
only: /^v?\d+\.\d+\.\d+$/
- linux_aarch64:
filters:
branches:
ignore: /.*/
tags:
only: /^v\d+\.\d+\.\d+$/
only: /^v?\d+\.\d+\.\d+$/
- macos_amd64:
filters:
branches:
ignore: /.*/
tags:
only: /^v\d+\.\d+\.\d+$/
only: /^v?\d+\.\d+\.\d+$/
- macos_aarch64:
filters:
branches:
ignore: /.*/
tags:
only: /^v\d+\.\d+\.\d+$/
only: /^v?\d+\.\d+\.\d+$/
- windows:
filters:
branches:
ignore: /.*/
tags:
only: /^v\d+\.\d+\.\d+$/
only: /^v?\d+\.\d+\.\d+$/
- publish_release:
requires:
- linux_amd64
Expand All @@ -317,4 +317,4 @@ workflows:
branches:
ignore: /.*/
tags:
only: /^v\d+\.\d+\.\d+$/
only: /^v?\d+\.\d+\.\d+$/

0 comments on commit 694d5fa

Please sign in to comment.