blob: b4f7a6172103033f736eccaca91dffda533a48a3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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
|