Skip to content

Commit

Permalink
Another attempt at circleci tags
Browse files Browse the repository at this point in the history
This was still trying to push to pypi. My guess is that circleci tags
aren't compared with an AND. Having both a branch and tag filter meant
it was attempting to push for anything on master branch.

Change it so that we ignore all branches for publish and only trigger on
a tag.
  • Loading branch information
jamielennox committed May 2, 2018
1 parent 67ccb59 commit 446d8e6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,13 +89,13 @@ workflows:
- py27:
filters:
branches:
only: master
ignore: /.*/
tags:
only: /^\d+\.\d+\.\d+$/
- py36:
filters:
branches:
only: master
ignore: /.*/
tags:
only: /^\d+\.\d+\.\d+$/
- pypi:
Expand All @@ -104,6 +104,6 @@ workflows:
- py36
filters:
branches:
only: master
ignore: /.*/
tags:
only: /^\d+\.\d+\.\d+$/

0 comments on commit 446d8e6

Please sign in to comment.