docs(release): correct the release process (no update-docs-version workflow)#146
Merged
Conversation
…orkflow The release guide claimed an `update-docs-version.yml` workflow auto-updates doc version footers and the package manifests on tag. That workflow does not exist in .github/workflows/, so nothing auto-updates those — which is why the in-repo homebrew/scoop templates have rotted to 0.8.51. Rewrite the tag/GoReleaser sections to match reality: - CHANGELOG bump is the manual step; land it via PR (main is protected), then tag the merge commit. - On tag, release.yml runs GoReleaser, which publishes the GitHub release and the real Homebrew/Scoop manifests to the tap/bucket repos. - The in-repo homebrew/pass-cli.rb and scoop/pass-cli.json are stale static placeholders not consumed by the pipeline. - GoReleaser runs in CI on tag push; local `goreleaser release` is a fallback. Added the snapshot dry-run command. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_014kVLjbUL4F4CkoA7RbMYy8
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
docs/06-development/release.mdclaimed anupdate-docs-version.ymlworkflow automatically updates documentation version footers and the package manifests when you push a tag. That workflow doesn't exist in.github/workflows/, so nothing auto-updates those files — which is why the in-repohomebrew/pass-cli.rb/scoop/pass-cli.jsontemplates have rotted to0.8.51. (Surfaced while cutting v0.19.0.)Fix
Rewrote the tag + GoReleaser sections to match reality:
release.ymlruns GoReleaser, which publishes the GitHub release and the real Homebrew/Scoop manifests toreyamira/homebrew-tap/reyamira/scoop-bucket— that's what users install.homebrew/pass-cli.rb/scoop/pass-cli.jsonare stale static placeholders not consumed by the pipeline.goreleaser release --cleanis only a fallback. Added the--snapshot ... --skip=publishdry-run command.No behavior change — documentation accuracy only. Validate Hugo Build confirms the site still builds.
🤖 Generated with Claude Code