Add release workflow and publish to public npm#108
Merged
coreymartin merged 1 commit intomainfrom Feb 26, 2026
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
94ffbeb to
92087a4
Compare
- release.yaml: workflow_dispatch creates a version bump PR with changelog, limited to patch/minor (no major bumps) - publish.yml: replaced GitHub Packages publishing with public npm, triggers on release/ branch PR merge, creates git tag after publish Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
92087a4 to
5eda784
Compare
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.
Summary
Replaces the manual GitHub Release → GitHub Packages publish flow with an automated release pipeline that publishes to public npm.
New:
release.yaml(workflow_dispatch)Trigger via Actions → "Create Release PR" → Run workflow. The workflow:
patchorminorbump based on user-facing impact (never major)package.json, updatesCHANGELOG.mdrelease/v*PR for reviewUpdated:
publish.ymlrelease/PR merges to main (replaces GitHub Release trigger)npm publish --provenance --access public— no token secrets neededRelease flow
Secrets required
ANTHROPIC_API_KEY— for changelog generation and version determinationTest plan
🤖 Generated with Claude Code