Skip to content

Commit 7b8ccbf

Browse files
committedFeb 1, 2018
Allow GitHub releases from all branches
1 parent c3e1616 commit 7b8ccbf

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed
 

‎.travis.yml

+6-4
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,17 @@ deploy:
2424
api_key: "$GITHUB_TOKEN"
2525
file_glob: true
2626
file: build/*.zip
27-
prerelease: false
27+
prerelease: true
2828
skip_cleanup: true
2929
on:
30-
condition: '"$TRAVIS_TAG" != "" && $NPM_TAG = latest'
30+
all_branches: true
31+
condition: '"$TRAVIS_TAG" != "" && $NPM_TAG = next'
3132
- provider: releases
3233
api_key: "$GITHUB_TOKEN"
3334
file_glob: true
3435
file: build/*.zip
35-
prerelease: true
36+
prerelease: false
3637
skip_cleanup: true
3738
on:
38-
condition: '"$TRAVIS_TAG" != "" && $NPM_TAG = next'
39+
all_branches: true
40+
condition: '"$TRAVIS_TAG" != "" && $NPM_TAG = latest'

0 commit comments

Comments
 (0)
Please sign in to comment.