Skip to content

Commit

Permalink
add commit message build support (#417)
Browse files Browse the repository at this point in the history
* add commit message build support

* adding build restrictions to .travis.yml
  • Loading branch information
kebowen730 committed Aug 20, 2020
1 parent c1a3496 commit 2860587
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Expand Up @@ -16,9 +16,9 @@ stages:
- name: conda_package
if: tag =~ ^v(\d+|\.)+[^a-z]\d+$
- name: website_dev
if: tag =~ ^v(\d+|\.)+[a-z]\d+$ OR tag = 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
if: (tag =~ ^v(\d+|\.)+\d+$) OR (tag = website_release) OR (commit_message =~ /^.*(website_release).*$/)


jobs:
Expand Down

0 comments on commit 2860587

Please sign in to comment.