This is an automated email from the ASF dual-hosted git repository.
martijnvisser pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/master by this push:
new f597bef9425 [hotfix][docs] Add uv to PATH for Chinese docs build in CI
f597bef9425 is described below
commit f597bef9425cd88fb47fdc9095f39a0cb6443ca4
Author: Martijn Visser <[email protected]>
AuthorDate: Thu Feb 19 10:51:56 2026 +0100
[hotfix][docs] Add uv to PATH for Chinese docs build in CI
---
.github/workflows/docs.sh | 2 ++
1 file changed, 2 insertions(+)
diff --git a/.github/workflows/docs.sh b/.github/workflows/docs.sh
index dbf9ee8e2ce..b39a28cc21d 100755
--- a/.github/workflows/docs.sh
+++ b/.github/workflows/docs.sh
@@ -97,6 +97,8 @@ if [ -f ./flink-python/dev/lint-python.sh ]; then
PYFLINK_GATEWAY_DISABLED=1 ./flink-python/dev/lint-python.sh -i "sphinx"
# build Chinese python docs into _build/html/zh/ subdirectory
+ # Ensure uv (installed by lint-python.sh) is on PATH so the Makefile
auto-detects it
+ export PATH="$(pwd)/flink-python/dev/download:$PATH"
pushd flink-python/docs
make zh
popd