From 446d8e6ec691f7b69d7aff10abd32fbcc27b02e5 Mon Sep 17 00:00:00 2001 From: Jamie Lennox Date: Wed, 2 May 2018 10:22:54 +1000 Subject: [PATCH] Another attempt at circleci tags 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. --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 89ebb17..9a54de8 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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: @@ -104,6 +104,6 @@ workflows: - py36 filters: branches: - only: master + ignore: /.*/ tags: only: /^\d+\.\d+\.\d+$/