Correct regexes

This commit is contained in:
Adrien Ferrand 2018-09-17 10:10:59 +02:00
parent c9d5efb199
commit 097cd1a306

View File

@ -50,18 +50,18 @@ workflows:
- build:
filters:
tags:
only: ^[0-9.]+
only: /^[0-9.]+/
- test:
requires:
- build
filters:
tags:
only: ^[0-9.]+
only: /^[0-9.]+/
- deploy:
requires:
- test
filters:
branches:
only: ^(master|4|3)$
only: /^(master|4|3)$/
tags:
only: ^[0-9.]+
only: /^[0-9.]+/