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

jiayu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sedona.git


The following commit(s) were added to refs/heads/master by this push:
     new 9fb20e389d [GH-2365] Fix mike command when running docs workflow on 
master branch (#2410)
9fb20e389d is described below

commit 9fb20e389d0c22e8d75f2228f9f45c8c06b84b27
Author: Kristin Cowalcijk <[email protected]>
AuthorDate: Mon Oct 20 10:31:48 2025 +0800

    [GH-2365] Fix mike command when running docs workflow on master branch 
(#2410)
---
 .github/workflows/docs.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml
index a1136f409f..175ce04d29 100644
--- a/.github/workflows/docs.yml
+++ b/.github/workflows/docs.yml
@@ -109,11 +109,11 @@ jobs:
         run: |
           if [[ "${GITHUB_REF##*/}" == "master" ]]; then
             git fetch origin website --depth=1
-            mike deploy latest-snapshot -b website -p
+            uv run mike deploy latest-snapshot -b website -p
           elif [[ "${GITHUB_REF##*/}" =~ ^branch-[0-9]+\.[0-9]+\.[0-9]+$ ]]; 
then
             git fetch origin website --depth=1
             version="${GITHUB_REF##*/branch-}"
-            mike deploy --update-aliases "$version" latest -b website -p
+            uv run mike deploy --update-aliases "$version" latest -b website -p
           fi
       - run: mkdir staging
       - run: cp -r site/* staging/

Reply via email to