ci: Build manual preview on PRs

Not as convenient as a deploy preview, but better than nothing.

Link: https://github.com/orgs/community/discussions/7730
This commit is contained in:
Liam Hupfer
2025-06-29 13:06:43 -05:00
parent bd5aec066b
commit c1ab5ea693

View File

@ -58,6 +58,27 @@ jobs:
- name: Test
run: make test
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install deps
run: sudo apt install texinfo
- name: Build docs
run: make html
- name: Upload
uses: actions/upload-artifact@v4
with:
name: Docs
if-no-files-found: error
# TODO: optimize images
path: |
doc/
!doc/images/
# Local Variables:
# eval: (outline-minor-mode)
# End: