Merge branch 'main' into codex/refactor-docs-pipeline-for-local-generation

This commit is contained in:
beatz174-bit
2026-05-13 08:48:43 +10:00
committed by GitHub
2 changed files with 23 additions and 1 deletions
+16
View File
@@ -34,7 +34,23 @@ jobs:
- name: Build public MkDocs site
run: |
<<<<<<< codex/refactor-docs-pipeline-for-local-generation
python3 -m mkdocs build --strict -f mkdocs-public.yml -d site-public
=======
python3 -m mkdocs build -f mkdocs-public.yml --strict
- name: Verify published content excludes internal/generated docs
run: |
test -d site-public
test ! -e site-public/generated
test ! -e site-public/docker
- name: Verify expected 404-only paths are not generated
run: |
test ! -e site-public/generated/compose-inventory/index.html
test ! -e site-public/generated/prometheus-rules/index.html
test ! -e site-public/docker/index.html
>>>>>>> main
- name: Configure GitHub Pages
uses: actions/configure-pages@v5