From 91568ea1567fe6fa8109733cbc654287adacbd98 Mon Sep 17 00:00:00 2001 From: James Barnsley Date: Thu, 11 Apr 2019 12:29:10 +1200 Subject: [PATCH] Only run release when tagged --- .circleci/config.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 018ada7f..92976b3b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -70,18 +70,18 @@ workflows: jobs: - build: filters: - branches: - only: develop + tags: + only: /.*/ - test: requires: - build filters: - branches: - only: develop + tags: + only: /.*/ - deploy: requires: - build - test filters: - branches: - only: master \ No newline at end of file + tags: + only: /.*/ \ No newline at end of file