diff options
-rw-r--r-- | README.md | 6 | ||||
-rw-r--r-- | ci/after-success.sh | 3 |
2 files changed, 5 insertions, 4 deletions
@@ -41,13 +41,13 @@ A concurrency framework for building real time systems. ## Requirements -- Rust 1.31.0+ +- Rust 1.36.0+ - Applications must be written using the 2018 edition. -## [User documentation](https://japaric.github.io/cortex-m-rtfm/book/en) +## [User documentation](https://japaric.github.io/rtfm5/book/en) -## [API reference](https://japaric.github.io/cortex-m-rtfm/api/rtfm/index.html) +## [API reference](https://japaric.github.io/rtfm5/api/rtfm/index.html) ## Acknowledgments diff --git a/ci/after-success.sh b/ci/after-success.sh index 65ddb904..6c696937 100644 --- a/ci/after-success.sh +++ b/ci/after-success.sh @@ -23,7 +23,8 @@ main() { ./ghp-import/ghp_import.py $td set +x - git push -fq https://$GH_TOKEN@github.com/$TRAVIS_REPO_SLUG.git gh-pages && echo OK + # NOTE push documentation to a different repository + git push -fq https://$GH_TOKEN@github.com/japaric/rtfm5.git gh-pages && echo OK rm -rf $td } |