This is an automated email from the ASF dual-hosted git repository.

lzljs3620320 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/paimon-website.git


The following commit(s) were added to refs/heads/master by this push:
     new 21b5658b feat: add rust doc
21b5658b is described below

commit 21b5658bb7a6c7c8913d87f2bfc3a259a2989121
Author: JingsongLi <[email protected]>
AuthorDate: Thu Apr 2 16:09:00 2026 +0800

    feat: add rust doc
---
 .github/workflows/build.yml | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 8c41d13d..0b22beb8 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -113,6 +113,24 @@ jobs:
             cd "$current_dir"
           done
 
+      - name: Set up Python
+        uses: actions/setup-python@v5
+        with:
+          python-version: '3.x'
+
+      - name: Clone Paimon Rust repo
+        run: git clone https://github.com/apache/paimon-rust.git 
/tmp/paimon-rust
+
+      - name: Build Paimon Rust docs
+        run: |
+          pip install mkdocs-material
+          cd /tmp/paimon-rust/docs
+          mkdocs build -d /tmp/paimon-rust-site
+          cd $GITHUB_WORKSPACE
+          rm -rf docs/rust
+          mkdir -p docs/rust
+          cp -r /tmp/paimon-rust-site/* docs/rust/
+
       - name: Push to github
         run: |
           git add -A

Reply via email to