Skip to content

Commit

Permalink
fix(ci): add filters (#140)
Browse files Browse the repository at this point in the history
  • Loading branch information
ykzts authored Aug 23, 2019
1 parent 903291e commit a29b352
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,17 +79,29 @@ workflows:
version: 2
build:
jobs:
- setup
- setup:
filters:
tags:
only: /.*/
- test-go1.12:
requires:
- setup
filters:
tags:
only: /.*/
- test-go1.11:
requires:
- setup
filters:
tags:
only: /.*/
- build:
requires:
- test-go1.12
- test-go1.11
filters:
tags:
only: /.*/
- release:
requires:
- build
Expand Down

0 comments on commit a29b352

Please sign in to comment.