13 lines
590 B
YAML
13 lines
590 B
YAML
language: rust
|
|
after_success: |
|
|
[ $TRAVIS_BRANCH = master ] &&
|
|
[ $TRAVIS_PULL_REQUEST = false ] &&
|
|
cargo doc &&
|
|
echo "<meta http-equiv=refresh content=0;url=`echo $TRAVIS_REPO_SLUG | cut -d '/' -f 2`/index.html>" > target/doc/index.html &&
|
|
sudo pip install ghp-import &&
|
|
ghp-import -n target/doc &&
|
|
git push -fq https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages
|
|
env:
|
|
global:
|
|
- secure: PkFZF4mHCVpPcdnRTLJlhFRqzSzFnFZ2s0twpfft1LZb6FCukijMGQqslp7AG4hovU8v0Tcs6WHxCNc1AC0ZdZ3YxpFXzSKbf7Y+sj4L3G6hG72vtQdZtzPeZmnXiev1i8qs0uaxO67wVS2nLv4ILy9Iue40000pRQVUVpGfjUA=
|