Fix tagged circleci config

This commit is contained in:
Geoff Bourne 2018-05-09 18:42:41 -05:00
parent fccf5f9eef
commit f83520e05a

View File

@ -31,7 +31,9 @@ jobs:
- checkout - checkout
- run: make install-dep - run: make install-dep
- run: docker login -u $DOCKER_USER -p $DOCKER_PASSWORD
- setup_remote_docker
- run: echo $DOCKER_PASSWORD | docker login -u $DOCKER_USER --password-stdin
- run: make release - run: make release
workflows: workflows:
@ -41,10 +43,12 @@ workflows:
- build: - build:
filters: filters:
tags: tags:
ignore: /.*/ ignore: /^\d+\.\d+\.\d+/
tagged: release:
jobs: jobs:
- release: - release:
filters: filters:
tags: tags:
only: /.*/ only: /^\d+\.\d+\.\d+/
branches:
ignore: /.*/