commit c17d7f416e3345078b5e5a24838f293376b15209
parent e10c53c945a2da1f1886ed0804c3b88037c65eca
Author: Erik Loualiche <eloualic@umn.edu>
Date: Mon, 16 Feb 2026 08:25:47 -0600
fix docs: revert to Documenter.HTML from broken DocumenterVitepress
DocumenterVitepress v0.2 deploys with multi-base numbered subdirectories
(1/, 2/, 3/) inside each version folder, leaving no index.html at the
version root. This causes 404s when stable symlinks to the version dir.
Also add paths-ignore for docs/ in CI.yml so doc-only changes skip tests.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Diffstat:
3 files changed, 3 insertions(+), 8 deletions(-)
diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml
@@ -4,6 +4,8 @@ on:
branches:
- main
tags: ['*']
+ paths-ignore:
+ - 'docs/**'
pull_request:
concurrency:
# Skip intermediate builds: always.
diff --git a/docs/Project.toml b/docs/Project.toml
@@ -1,3 +1,2 @@
[deps]
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
-DocumenterVitepress = "4710194d-e776-4893-9690-8d956a29c365"
diff --git a/docs/make.jl b/docs/make.jl
@@ -9,7 +9,6 @@ push!(LOAD_PATH, "../src/")
# --
using BazerUtils
using Documenter
-using DocumenterVitepress
# --
DocMeta.setdocmeta!(BazerUtils, :DocTestSetup, :(using BazerUtils);
@@ -17,12 +16,7 @@ DocMeta.setdocmeta!(BazerUtils, :DocTestSetup, :(using BazerUtils);
# --
makedocs(
- # format = Documenter.HTML(),
- format=DocumenterVitepress.MarkdownVitepress(
- repo = "https://github.com/LouLouLibs/BazerUtils.jl",
- devbranch = "main",
- devurl = "dev";
- ),
+ format = Documenter.HTML(),
sitename = "BazerUtils.jl",
modules = [BazerUtils],
authors = "Erik Loualiche",