From f30743f52a1283743d0f5e259136f82588fc6bb2 Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Sun, 21 Apr 2019 20:52:16 +0200 Subject: [PATCH] push docs to another repo & update README --- README.md | 6 +++--- ci/after-success.sh | 3 ++- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b8cbd00f7d..db23d2b4d0 100644 --- a/README.md +++ b/README.md @@ -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 65ddb90483..6c69693795 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 }