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 10e618fa63 try
10e618fa63 is described below

commit 10e618fa63732843e6b505183125ecc11e674fbc
Author: tqchen <[email protected]>
AuthorDate: Mon Sep 1 19:53:52 2025 -0400

    try
---
 .github/workflows/publish_tvm_ffi_docs.yml | 2 ++
 scripts/task_deploy_asf_site.sh            | 5 +++++
 2 files changed, 7 insertions(+)

diff --git a/.github/workflows/publish_tvm_ffi_docs.yml 
b/.github/workflows/publish_tvm_ffi_docs.yml
index 3f298af882..975f85656c 100644
--- a/.github/workflows/publish_tvm_ffi_docs.yml
+++ b/.github/workflows/publish_tvm_ffi_docs.yml
@@ -44,6 +44,8 @@ jobs:
           git ls-tree HEAD ffi/ --name-only | grep -vP '^ffi/v\\d' | xargs rm 
-rf
           cp -r ../tvm/ffi/docs/_build/html ffi
           git add .
+          git config user.name tvm-bot
+          git config user.email [email protected]
           git commit -m"deploying ffi docs"
           git status
           git remote push origin asf-site
diff --git a/scripts/task_deploy_asf_site.sh b/scripts/task_deploy_asf_site.sh
index 3d7ddce33b..cfbdbf9b5d 100755
--- a/scripts/task_deploy_asf_site.sh
+++ b/scripts/task_deploy_asf_site.sh
@@ -18,6 +18,11 @@ git ls-files | grep -v -e ^docs -e ^ffi | xargs  rm -rf
 cp .gitignore.bak .gitignore
 cp .asf.yaml.bak .asf.yaml
 
+if [ "$GITHUB_ACTIONS" = "true" ]; then
+  git config user.name tvm-bot
+  git config user.email [email protected]
+fi
+
 cp -rf _site/* .
 DATE=`date`
 git add --all && git commit -am "Build at ${DATE}"

Reply via email to