Skip to content

Commit

Permalink
Fix circleCI filter on tags #2
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasMahe authored and ilgooz committed Oct 6, 2018
1 parent 5ef0714 commit 4349ed0
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,18 +84,25 @@ workflows:
requires:
- "publish_docker_dev"

release_prod:
test_prod:
jobs:
- "test":
filters:
tags:
only: /.*/
branches:
only: master
- "publish_docker_prod":


release_prod:
jobs:
- "test":
filters:
tags:
only: /^v.*/
branches:
only: master
- "publish_docker_prod":
requires:
- "test"
- "release_cli_prod":
Expand Down

0 comments on commit 4349ed0

Please sign in to comment.