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