Skip to content

Commit

Permalink
Fix tag trigger for circleci
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexey Boyko committed Sep 9, 2019
1 parent 99f369c commit 382f2b4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@ workflows:
- golangci-lint/lint:
filters:
tags:
only: /^v[0-9]+\.[0-9]+\.[0-9]+$/
only: /^[0-9]+\.[0-9]+\.[0-9]+$/
- test:
filters:
tags:
only: /^v[0-9]+\.[0-9]+\.[0-9]+$/
only: /^[0-9]+\.[0-9]+\.[0-9]+$/
- release:
filters:
branches:
ignore: /.*/
tags:
only: /^v[0-9]+\.[0-9]+\.[0-9]+$/
only: /^[0-9]+\.[0-9]+\.[0-9]+$/
requires:
- golangci-lint/lint
- test
Expand Down

0 comments on commit 382f2b4

Please sign in to comment.