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 version: 2
ci: ci:
jobs: jobs:
- checkout - checkout:
filters:
branches:
only: /.*/
tags:
only: /.*/
- linting: - linting:
requires: requires:
- checkout - checkout
filters:
branches:
only: /.*/
tags:
only: /.*/
- testing: - testing:
requires: requires:
- checkout - checkout
filters:
branches:
only: /.*/
tags:
only: /.*/
- build: - build:
requires: requires:
- testing - testing
@ -24,6 +39,8 @@ workflows:
filters: filters:
tags: tags:
ignore: /^v[0-9]+(\.[0-9]+)*$/ ignore: /^v[0-9]+(\.[0-9]+)*$/
branches:
only: /.*/
- publishing: - publishing:
requires: requires:
- testing - testing