Skip to content

Commit

Permalink
adding build restrictions to .travis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
kebowen730 committed Jul 8, 2020
1 parent 46790d7 commit bc37dab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Expand Up @@ -40,9 +40,9 @@ stages:
- name: gallery
if: tag =~ ^v(\d+|\.)*[^a-z]\d*$
- name: website_dev
if: (tag =~ ^v(\d+|\.)+[a-z]\d+$) OR (tag = website_dev) OR (commit_message =~ /^.*(website_dev).*$/)
if: (tag =~ ^v(\d+|\.)+[a|b|rc]\d+$) OR (tag = website_dev) OR (commit_message =~ /^.*(website_dev).*$/)
- name: website_release
if: (tag =~ ^v(\d+|\.)+[^a-z]\d+$) OR (tag = website) OR (commit_message =~ /^.*(website_release).*$/)
if: (tag =~ ^v(\d+|\.)+\d+$) OR (tag = website_release) OR (commit_message =~ /^.*(website_release).*$/)
- name: gallery_dev
if: tag =~ ^v(\d+|\.)+([a-z]|rc)\d+$
- name: docs_daily
Expand Down

0 comments on commit bc37dab

Please sign in to comment.