This is an automated email from the ASF dual-hosted git repository.
areusch pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git
The following commit(s) were added to refs/heads/main by this push:
new 6eaa5e6 [ci] Fix doc deploy folder (#10634)
6eaa5e6 is described below
commit 6eaa5e6f29420b2c85ec6e3c5f83566d60c7d641
Author: driazati <[email protected]>
AuthorDate: Wed Mar 16 16:49:22 2022 -0700
[ci] Fix doc deploy folder (#10634)
This was unpacking into `tvm-site/docs` instead of just `docs` at the top
level
Co-authored-by: driazati <[email protected]>
---
Jenkinsfile | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/Jenkinsfile b/Jenkinsfile
index 44f7b59..3ba8430 100755
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -746,10 +746,10 @@ def deploy_docs() {
git status
git checkout -B $DOCS_DEPLOY_BRANCH
- rm -rf tvm-site/docs
- mkdir -p tvm-site/docs
- tar xf ../docs.tgz -C tvm-site/docs
- COMMIT=$(cat tvm-site/docs/commit_hash)
+ rm -rf docs
+ mkdir -p docs
+ tar xf ../docs.tgz -C docs
+ COMMIT=$(cat docs/commit_hash)
git add .
git config user.name tvm-bot
git config user.email [email protected]