From 4cd78f24fe422b3e7f2c6933a827185aa864e588 Mon Sep 17 00:00:00 2001 From: Alfonso Segura Date: Mon, 25 May 2026 22:44:27 +0200 Subject: [PATCH] ci: set latest as the default mike version on every deploy Without this, navigating to the root of the docs site shows a version list instead of redirecting to the latest docs. Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/docs.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 27d7c18..e6cfff5 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -58,3 +58,6 @@ jobs: - name: Deploy docs run: uv run mike deploy --push --update-aliases ${{ steps.version.outputs.value }} latest + + - name: Set default version + run: uv run mike set-default --push latest