Skip to content

Commit

Permalink
Don't use v prefix in tag syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
adidahiya authored Dec 27, 2017
1 parent cd88565 commit aad1876
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,29 +87,29 @@ workflows:
requires: [install-dependencies]
filters:
tags:
only: /^v.*/
only: /.*/
- lint:
requires: [install-dependencies]
filters:
tags:
only: /^v.*/
only: /.*/
- test:
requires: [build]
filters:
tags:
only: /^v.*/
only: /.*/
- test-next:
requires: [build]
filters:
tags:
only: /^v.*/
only: /.*/
- deploy-npm:
requires:
- lint
- test
- test-next
filters:
tags:
only: /^v.*/
only: /.*/
branches:
ignore: /.*/

0 comments on commit aad1876

Please sign in to comment.