Skip to content

Commit 0b22142

Browse files
committed
Add comments on .travis.yml and remove deploy.on.branch
1 parent 95339a5 commit 0b22142

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.travis.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,27 @@ node_js: stable
33
cache: npm
44
script: npm run build && npm test && npm run docs
55
deploy:
6+
# Publish to NPM
67
- provider: npm
78
skip_cleanup: true
89
email: parkjs814@gmail.com
910
api_key: $NPM_ACCESS_TOKEN
1011
on:
11-
branch: master
1212
tags: true
13+
14+
# Publish TypeDoc to GitHub Pages
1315
- provider: pages
1416
skip_cleanup: true
1517
github_token: $GITHUB_ACCESS_TOKEN
1618
local_dir: docs
1719
keep_history: true
1820
on:
19-
branch: master
2021
tags: true
22+
23+
# Create a GitHub release
2124
- provider: releases
2225
api_key: $GITHUB_ACCESS_TOKEN
2326
on:
24-
branch: master
2527
tags: true
2628
env:
2729
global:

0 commit comments

Comments
 (0)