Skip to content

Commit

Permalink
Ignore all branches from deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
dbalan committed Mar 6, 2018
1 parent 4bbbcaa commit 5efc1b6
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,26 @@ jobs:

workflows:
version: 2
build-and-deploy:
testbuild:
jobs:
- build
- build:
filters:
tags:
ignore: /^v.*/
release-build:
jobs:
- build:
filters:
branches:
ignore: /.*/
tags:
only: /^v.*/
- deploy:
requires:
- build
filters:
branches:
ignore: /.*/
tags:
only: /^v.*/

0 comments on commit 5efc1b6

Please sign in to comment.