Skip to content

Commit

Permalink
Fix release workflow for tags
Browse files Browse the repository at this point in the history
  • Loading branch information
dm3ch authored and ketchoop committed Jun 29, 2019
1 parent 79e52c6 commit 55df494
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,20 @@ executors:
workflows:
ci:
jobs:
- golangci-lint/lint
- test
- golangci-lint/lint:
filters:
tags:
only: /^v[0-9]+\.[0-9]+\.[0-9]+$/
- test:
filters:
tags:
only: /^v[0-9]+\.[0-9]+\.[0-9]+$/
- release:
filters:
branches:
ignore: /.*/
tags:
only: /v[0-9]+(\.[0-9]+)*(-.*)*/
only: /^v[0-9]+\.[0-9]+\.[0-9]+$/
requires:
- golangci-lint/lint
- test
Expand Down

0 comments on commit 55df494

Please sign in to comment.