fix(docs): repair broken links failing Deploy Documentation CI#3103
Merged
Conversation
- architecture/index.md: /docs/DOLT.md → #dolt-server-mode anchor - core-concepts/index.md: /core-concepts/dolt-server and /dolt-sync → anchor links (pages never existed) - reference/configuration.md: /docs/CONFIG.md → GitHub source link - deploy-docs.yml: add lychee --remap to strip /beads/ baseUrl prefix from internal links - Apply same fixes to versioned_docs/version-1.0.0/ Amp-Thread-ID: https://ampcode.com/threads/T-019d68c4-3efa-71bf-aa9d-6e25fc48fb9a Co-authored-by: Amp <amp@ampcode.com>
seanmartinsmith
pushed a commit
to seanmartinsmith/beads
that referenced
this pull request
Apr 10, 2026
…wnhall#3103) - architecture/index.md: /docs/DOLT.md → #dolt-server-mode anchor - core-concepts/index.md: /core-concepts/dolt-server and /dolt-sync → anchor links (pages never existed) - reference/configuration.md: /docs/CONFIG.md → GitHub source link - deploy-docs.yml: add lychee --remap to strip /beads/ baseUrl prefix from internal links - Apply same fixes to versioned_docs/version-1.0.0/ Amp-Thread-ID: https://ampcode.com/threads/T-019d68c4-3efa-71bf-aa9d-6e25fc48fb9a Co-authored-by: Amp <amp@ampcode.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
The Deploy Documentation workflow is failing on every push to main. Two root causes:
1. Broken Docusaurus links (4 links → 6 files)
Pages link to targets that don't exist:
/docs/DOLT.mdand/docs/CONFIG.md— repo-level files, not Docusaurus pages/core-concepts/dolt-serverand/core-concepts/dolt-sync— pages that were never created2. Lychee link checker vs
baseUrl: /beads/All internal navigation links use the
/beads/prefix (required for GitHub Pages), but lychee resolves them againstwebsite/build/which doesn't have abeads/subdirectory — causing every single internal link to fail.Fix
/docs/DOLT.md→#dolt-server-modeanchor (content already on-page)/core-concepts/dolt-serverand/dolt-sync→ same-page anchor links/docs/CONFIG.md→ GitHub source URL--remap '/beads/(.*) /$1'to strip baseUrl prefix for lychee resolutionTesting
All broken link patterns eliminated: