From ddfa2bd27daeeb4f6b66b5ea95684d230e05dcc6 Mon Sep 17 00:00:00 2001 From: Philip Peder Mallegol-Hansen Date: Mon, 17 Sep 2018 12:18:02 +0100 Subject: [PATCH] Fixes deploy triggering on all commits, see https://discuss.circleci.com/t/workflow-job-with-tag-filter-being-run-for-every-commit/20762/3. --- .circleci/config.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 89d7641..d1f960e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -36,11 +36,15 @@ workflows: jobs: - tests: filters: + branches: + ignore: /.*/ tags: only: /^v.*/ - deploy: requires: - tests filters: + branches: + ignore: /.*/ tags: only: /^v.*/