ci: GitHub Pages deploy, semver releases, and contributor docs#1
Merged
Conversation
…or docs - .github/workflows/ci.yml: build + link audit on PRs (required check) - .github/workflows/deploy-pages.yml: deploy dist/ to Pages on push to main (built from the committed mirror/, no archive.org crawl in CI) - .github/workflows/release.yml: on v* tag, build, zip dist/, publish a GitHub Release with the tag's changelog - scripts/release.sh + make release / release-dryrun: tag-driven semver from Conventional Commits since the last v* tag (no commit to PR-protected main) - AGENTS.md / CLAUDE.md / CONTRIBUTING.md: conventions — never hand-edit mirror/ or dist/, fixes go in build_site.py passes, Conventional Commits drive releases, PR-only flow - README: live site link, hosting & releases, and contributing sections Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
ds17f
added a commit
that referenced
this pull request
Jun 5, 2026
…or docs (#1) - .github/workflows/ci.yml: build + link audit on PRs (required check) - .github/workflows/deploy-pages.yml: deploy dist/ to Pages on push to main (built from the committed mirror/, no archive.org crawl in CI) - .github/workflows/release.yml: on v* tag, build, zip dist/, publish a GitHub Release with the tag's changelog - scripts/release.sh + make release / release-dryrun: tag-driven semver from Conventional Commits since the last v* tag (no commit to PR-protected main) - AGENTS.md / CLAUDE.md / CONTRIBUTING.md: conventions — never hand-edit mirror/ or dist/, fixes go in build_site.py passes, Conventional Commits drive releases, PR-only flow - README: live site link, hosting & releases, and contributing sections Co-authored-by: Damian Silbergleith <14797221+ds17f@users.noreply.github.com> Co-authored-by: Claude Opus 4.8 <noreply@anthropic.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.
Sets up hosting and release automation for the mirror.
What this adds
deploy-pages.yml): every merge tomainbuildsdist/from the committed
mirror/and publishes to GitHub Pages —https://ds17f.github.io/annotatedDead/. No archive.org crawl in CI.
ci.yml):make install+make dist+make auditon every PR.This is the required status check (audit fails on real broken links).
release.yml+scripts/release.sh+make release):tag-driven semver from Conventional Commits.
make releasepushes avX.Y.Ztag (no commit to protectedmain); the workflow builds, zipsdist/, and publishes a GitHub Release with the changelog.AGENTS.md,CLAUDE.md,CONTRIBUTING.md— neverhand-edit
mirror//dist/, fixes go inbuild_site.pypasses,Conventional Commits drive releases, PR-only flow.
Flow going forward
Branch → PR → CI green → merge → auto-deploy to Pages. Cut versioned releases
with
make release(preview viamake release-dryrun).🤖 Generated with Claude Code