ci: Automate action releases#5
Merged
Merged
Conversation
Move release creation into a manually dispatched GitHub Actions workflow with automatic semantic version bumps. Publish and maintain the major action tag in the same retryable workflow. Co-Authored-By: OpenAI Codex <noreply@openai.com>
Update the action bundler and GitHub workflow actions to their latest releases. Regenerate the committed bundle and retain immutable workflow action pins. Co-Authored-By: OpenAI Codex <noreply@openai.com>
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit 19b6007. Configure here.
Reuse an existing semantic release tag on the source commit so fresh dispatches and reruns recover partial releases. Require new commits when creating a release to prevent duplicate versions from unchanged code. Co-Authored-By: OpenAI Codex <noreply@openai.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.

Releases now run entirely through a manually dispatched GitHub Actions workflow. Maintainers choose a patch, minor, or major bump; the workflow derives the next stable version, verifies the action bundle, publishes the GitHub Release, and advances the matching major tag such as
v0.The npm dependency set and pinned workflow actions are current, including the latest
@vercel/ncc,actions/checkout, andactions/setup-nodereleases. The committed action bundle is regenerated with the upgraded toolchain.The release remains retryable if publication succeeds before the major-tag update, while fresh dispatches still require the latest commit on
main. The local release script is removed so GitHub Actions is the only supported release path.