Enabling circleci builds on feature tags

This commit is contained in:
rockstardev 2019-11-10 07:00:30 -06:00
parent c5ca02e48e
commit 1d08a811e7

View file

@ -104,15 +104,16 @@ workflows:
# ignore any commit on any branch by default
branches:
ignore: /.*/
# only act on version tags
# only act on version tags v1.0.0.88
# OR feature tags like zlndseedbackup
tags:
only: /v[1-9]+(\.[0-9]+)*/
only: /(v[1-9]+(\.[0-9]+)*)|(z[a-z]+)/
- arm32v7:
filters:
branches:
ignore: /.*/
tags:
only: /v[1-9]+(\.[0-9]+)*/
only: /(v[1-9]+(\.[0-9]+)*)|(z[a-z]+)/
- multiarch:
requires:
- amd64
@ -121,4 +122,4 @@ workflows:
branches:
ignore: /.*/
tags:
only: /v[1-9]+(\.[0-9]+)*/
only: /(v[1-9]+(\.[0-9]+)*)|(z[a-z]+)/