diff options
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..b4f7a61 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,20 @@ +sudo: false +dist: trusty +language: node_js + +install: + - uname -a + +script: + - mkdir public + - cp -a src/. public/ + +deploy: + provider: pages + skip-cleanup: true + github-token: $GITHUB_TOKEN # Set in travis-ci.org dashboard, marked secure + keep-history: false + local-dir: public + target-branch: gh-pages + on: + branch: stable |