ignore all branch pushes for stage builds

This commit is contained in:
Danny Coates 2018-02-25 17:14:37 -08:00
parent 27550a7781
commit c469696687
No known key found for this signature in database
GPG Key ID: 4C442633C62E00CB
1 changed files with 6 additions and 0 deletions

View File

@ -76,10 +76,14 @@ workflows:
jobs: jobs:
- build: - build:
filters: filters:
branches:
ignore: /.*/
tags: tags:
only: /^v.*/ only: /^v.*/
- test: - test:
filters: filters:
branches:
ignore: /.*/
tags: tags:
only: /^v.*/ only: /^v.*/
- deploy_stage: - deploy_stage:
@ -87,5 +91,7 @@ workflows:
- build - build
- test - test
filters: filters:
branches:
ignore: /.*/
tags: tags:
only: /^v.*/ only: /^v.*/