From cac14a0bcbbc9466f18ffbbde74ed9de199cd51d Mon Sep 17 00:00:00 2001 From: Diego Sampaio Date: Wed, 29 Nov 2017 10:49:07 -0200 Subject: [PATCH] Fix tag build --- .circleci/config.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index c5abf8975c7..dc0dd20eb0a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -270,13 +270,22 @@ workflows: version: 2 build-and-test: jobs: - - build + - build: + filters: + tags: + only: /^[0-9]+\.[0-9]+\.[0-9]+(-rc\.[0-9]+)?$/ - test-with-oplog: requires: - build + filters: + tags: + only: /^[0-9]+\.[0-9]+\.[0-9]+(-rc\.[0-9]+)?$/ - test-without-oplog: requires: - build + filters: + tags: + only: /^[0-9]+\.[0-9]+\.[0-9]+(-rc\.[0-9]+)?$/ - deploy: requires: - test-with-oplog