This is an automated email from the ASF dual-hosted git repository.
liurenjie1024 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg-rust.git
The following commit(s) were added to refs/heads/main by this push:
new 297a607 docs: Generate rust API docs (#486)
297a607 is described below
commit 297a60799394460e8d3ae5660ce76c82088ea0a7
Author: Xuanwo <[email protected]>
AuthorDate: Fri Jul 26 22:01:07 2024 +0800
docs: Generate rust API docs (#486)
Signed-off-by: Xuanwo <[email protected]>
---
.github/workflows/website.yml | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/.github/workflows/website.yml b/.github/workflows/website.yml
index a770aeb..d72ba03 100644
--- a/.github/workflows/website.yml
+++ b/.github/workflows/website.yml
@@ -47,6 +47,11 @@ jobs:
- name: Copy asf file
run: cp .asf.yaml ./website/book/.asf.yaml
+ - name: Build API docs
+ run: |
+ cargo doc --no-deps --workspace --all-features
+ cp -r target/doc ./website/book/api
+
- name: Deploy to gh-pages
uses: peaceiris/[email protected]
if: github.event_name == 'push' && github.ref_name == 'main'