We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a8ca1a commit 63ea12bCopy full SHA for 63ea12b
.travis.yml
@@ -8,9 +8,13 @@ script:
8
- RUSTC_BOOTSTRAP=1 cargo test --all
9
- RUSTC_BOOTSTRAP=1 cargo doc --document-private-items
10
deploy:
11
- provider: pages
12
- local-dir: ./target/doc
13
- skip-cleanup: true
14
- github-token: $GITHUB_TOKEN
15
- on:
16
- branch: master
+ - provider: script
+ script: mkdir -p target/gh-pages && mv target/doc target/gh-pages/
+ on:
+ branch: master
+ - provider: pages
+ local-dir: ./target/gh-pages
17
+ skip-cleanup: true
18
+ github-token: $GITHUB_TOKEN
19
20
0 commit comments