Update circleci config to have two separate workflows

This commit is contained in:
2018-05-07 05:58:13 +01:00
parent 63ed2d9b30
commit 75542c3748

View File

@@ -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