fix(publish): restore version commit-back to dev after npm release#2856
Merged
code-yeongyu merged 1 commit intocode-yeongyu:devfrom Mar 27, 2026
Merged
Conversation
There was a problem hiding this comment.
No issues found across 1 file
Confidence score: 5/5
- Automated review surfaced no issues in the provided summaries.
- No files require special attention.
Auto-approved: Restores lost release commit-back logic; uses standard Git patterns with safety checks for empty diffs and proper placement in the workflow.
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.
The dual-publish commit
e244403(March 8) replaced the old "Git commit and tag" step with the openagent publish logic. The version bump that was being committed back to dev got dropped as collateral.Since then,
package.jsonhas been stuck at3.11.0while npm is at3.13.1. Anything reading the version from source (doctor, auto-update, binary embed,/get-unpublished-changes) gets the wrong number.This re-adds the commit-back step between the oh-my-opencode publish and the openagent publish, which is where it needs to sit so the
git checkout -- package.jsonat the end only reverts the name mutation, not the version bump.Summary by cubic
Restores the missing commit-back of the version bump in the publish workflow so the repo’s
package.jsonstays in sync with the npm release, fixing stale version reads across tools.package.jsonchanges, tagsv{version}, and pushes branch and tags.Written for commit fb837db. Summary will update on new commits.