From 75542c3748a9c083c8b731d767ba37e6339371ce Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Mon, 7 May 2018 05:58:13 +0100 Subject: [PATCH] Update circleci config to have two separate workflows --- .circleci/config.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 7be2411..916f081 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -44,12 +44,22 @@ jobs: command: goreleaser workflows: version: 2 + build: + jobs: + - build: + filters: + branches: + only: /.*/ + tags: + ignore: /^[0-9]+(\.[0-9]+)*/ build-and-release: jobs: - build: filters: + branches: + ignore: /.*/ tags: - only: /.*/ + only: /^[0-9]+(\.[0-9]+)*/ - release: requires: - build