fix workflow execution for tags

This commit is contained in:
Simon Aronsson 2019-04-04 22:57:50 +02:00
parent fd75f93d77
commit 66cccd54c6

View file

@ -10,13 +10,28 @@ workflows:
version: 2
ci:
jobs:
- checkout
- checkout:
filters:
branches:
only: /.*/
tags:
only: /.*/
- linting:
requires:
- checkout
filters:
branches:
only: /.*/
tags:
only: /.*/
- testing:
requires:
- checkout
filters:
branches:
only: /.*/
tags:
only: /.*/
- build:
requires:
- testing
@ -24,6 +39,8 @@ workflows:
filters:
tags:
ignore: /^v[0-9]+(\.[0-9]+)*$/
branches:
only: /.*/
- publishing:
requires:
- testing