This is an automated email from the ASF dual-hosted git repository.
JingsongLi 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 da8f3ea10 feat: add docs for vector index and full text index
da8f3ea10 is described below
commit da8f3ea10f54792c57513c8bdbd877120584780a
Author: JingsongLi <[email protected]>
AuthorDate: Thu Jul 23 08:26:49 2026 +0800
feat: add docs for vector index and full text index
---
.github/workflows/build.yml | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 5c4f6d5a5..638a2b9c3 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -170,6 +170,30 @@ jobs:
mkdir -p docs/mosaic
cp -r /tmp/paimon-mosaic/docs/* docs/mosaic/
+ - name: Clone Paimon Full Text repo
+ run: git clone --depth 1
https://github.com/apache/paimon-full-text.git /tmp/paimon-full-text
+
+ - name: Build Paimon Full Text docs
+ run: |
+ mkdocs new /tmp/paimon-full-text-docs
+ cp /tmp/paimon-full-text/README.md
/tmp/paimon-full-text-docs/docs/index.md
+ cp /tmp/paimon-full-text/docs/*.md /tmp/paimon-full-text-docs/docs/
+ sed -i 's/^site_name:.*/site_name: Apache Paimon Full Text Index/'
/tmp/paimon-full-text-docs/mkdocs.yml
+ printf '\ntheme:\n name: material\n' >>
/tmp/paimon-full-text-docs/mkdocs.yml
+ mkdocs build -f /tmp/paimon-full-text-docs/mkdocs.yml -d
/tmp/paimon-full-text-site
+ rm -rf docs/full-text
+ mkdir -p docs/full-text
+ cp -r /tmp/paimon-full-text-site/* docs/full-text/
+
+ - name: Clone Paimon Vector Index repo
+ run: git clone --depth 1
https://github.com/apache/paimon-vector-index.git /tmp/paimon-vector-index
+
+ - name: Build Paimon Vector Index docs
+ run: |
+ rm -rf docs/vector-index
+ mkdir -p docs/vector-index
+ cp -r /tmp/paimon-vector-index/docs/* docs/vector-index/
+
- name: Push to github
run: |
git add -A