This is an automated email from the ASF dual-hosted git repository.
tqchen pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tvm-site.git
The following commit(s) were added to refs/heads/main by this push:
new 64f477d Update ASF site deployment
64f477d is described below
commit 64f477d73269d4d2b207998a84f17517ff5d5d39
Author: tqchen <[email protected]>
AuthorDate: Thu Jul 29 18:32:14 2021 -0400
Update ASF site deployment
---
scripts/task_deploy_asf_site.sh | 2 ++
1 file changed, 2 insertions(+)
diff --git a/scripts/task_deploy_asf_site.sh b/scripts/task_deploy_asf_site.sh
index d00dc26..76c5779 100755
--- a/scripts/task_deploy_asf_site.sh
+++ b/scripts/task_deploy_asf_site.sh
@@ -6,6 +6,7 @@ set -u
echo "Start to generate and deploy site ..."
jekyll b
cp .gitignore .gitignore.bak
+cp .asf.yaml .asf.yaml.bak
# copy new files into the current site
git fetch
@@ -14,6 +15,7 @@ git checkout -B asf-site origin/asf-site
# remove all existing files, excluding the docs
git ls-files | grep -v ^docs| xargs rm -f
cp .gitignore.bak .gitignore
+cp .asf.yaml.bak .asf.yaml
cp -rf _site/* .
DATE=`date`