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 765e317169f Update ffi docs
765e317169f is described below

commit 765e317169f64b8a19f7cd875d827f0461d3fb6a
Author: tqchen <[email protected]>
AuthorDate: Sat Sep 13 21:14:28 2025 -0400

    Update ffi docs
---
 .github/workflows/publish_tvm_ffi_docs.yml | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/.github/workflows/publish_tvm_ffi_docs.yml 
b/.github/workflows/publish_tvm_ffi_docs.yml
index 6a871def719..28d865c0176 100644
--- a/.github/workflows/publish_tvm_ffi_docs.yml
+++ b/.github/workflows/publish_tvm_ffi_docs.yml
@@ -15,31 +15,31 @@ jobs:
           submodules: recursive
           path: tvm-site
 
-      - name: Checkout tvm
+      - name: Checkout tvm-ffi
         uses: actions/checkout@v4
         with:
-          repository: apache/tvm
+          repository: apache/tvm-ffi
           submodules: recursive
-          path: tvm
+          path: tvm-ffi
 
       - name: Install doxygen
         run: |
           sudo apt install -y doxygen graphviz
 
       - name: Install wheel and requirements
-        working-directory: tvm/ffi
+        working-directory: tvm-ffi
         run: |
           pip install .
           pip install -r docs/requirements.txt
           pip install linkify-it-py
 
       - name: Build docs
-        working-directory: tvm/ffi/docs
+        working-directory: tvm-ffi/docs
         env:
           BUILD_CPP_DOCS: 1
         run: |
           make html
-          python ../../../tvm-site/scripts/download_3rdparty_embeds.py -v 
--path=_build/html
+          python ../../tvm-site/scripts/download_3rdparty_embeds.py -v 
--path=_build/html
 
       - name: Deploy docs
         working-directory: tvm-site
@@ -47,7 +47,7 @@ jobs:
           git fetch
           git checkout -B asf-site origin/asf-site
           rm -rf ffi
-          cp -r ../tvm/ffi/docs/_build/html ffi
+          cp -r ../tvm-ffi/docs/_build/html ffi
           git config user.name tvm-bot
           git config user.email [email protected]
           git add -f ffi

Reply via email to