Skip to content

Commit

Permalink
Add tag filter to test job
Browse files Browse the repository at this point in the history
The tag filter in `test` job is needed here because the `test` job is
required by `release` job

Signed-off-by: Ali Yousuf <[email protected]>
  • Loading branch information
alyyousuf7 committed May 20, 2018
1 parent c31d7f4 commit bb44f73
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,10 @@ workflows:
build-test-and-release:
jobs:
- build
- test
- test:
filters:
tags:
only: /^v[0-9]+\.[0-9]+\.[0-9]+$/
- coverage:
requires:
- test
Expand All @@ -59,4 +62,4 @@ workflows:
branches:
ignore: /.*/
tags:
only: /^v[0-9]+\.[0-9]+\.[0-9]+$/ # vx.x.x
only: /^v[0-9]+\.[0-9]+\.[0-9]+$/

0 comments on commit bb44f73

Please sign in to comment.