Add workflow_dispatch prerelease publish for cua-cli - #58
Merged
Conversation
Publish @onkernel/cua-cli from any branch under an npm dist-tag (never `latest`) as `<version>-<dist-tag>.<run-number>`, unique per run, so unmerged work can be tried via `npm install -g @onkernel/cua-cli@<tag>`. Unlike release-cua-cli.yml there is no "tag on main" gate; it publishes through OIDC trusted publishing the same way. Co-Authored-By: Claude Opus 4.7 <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.
Summary
Adds
.github/workflows/prerelease-cua-cli.yml— a manually-triggered workflow to publish a prerelease of@onkernel/cua-clifrom any branch, so unmerged work can be exercised via a normalnpm install.workflow_dispatchwith adist_taginput (defaultext).<pkg-version>-<dist_tag>.<run_number>(unique per run) under the chosen dist-tag, neverlatest— normalnpm install @onkernel/cua-cliis unaffected.release-cua-cli.yml.npm publish --tag <dist_tag>.Once published:
npm install -g @onkernel/cua-cli@<dist_tag>.Two one-time setup steps (required before first run)
main.workflow_dispatchworkflows are only dispatchable if they exist on the default branch. After merge, "Run workflow" appears under Actions and you can point it at any branch.release-cua-cli.yml), so add this workflow as a trusted publisher for@onkernel/cua-clion npmjs.com: repokernel/cua, workflowprerelease-cua-cli.yml. (Alternatively, swap the publish step to a granularNPM_TOKENsecret — say the word and I'll wire that instead.)Usage
Actions → Prerelease CUA CLI → Run workflow → pick the branch (e.g.
hypeship/harness-extension-host) → setdist_tag→ Run. Thennpm i -g @onkernel/cua-cli@<dist_tag>.Test plan
hypeship/harness-extension-hostwithdist_tag=extnpm i -g @onkernel/cua-cli@extand confirmcua --helpshows--self-extend/--no-extensions🤖 Generated with Claude Code
Note
Medium Risk
It can publish real npm packages from arbitrary branches under a non-
latesttag; mistakes in dist-tag validation or trusted publishing setup could expose unintended builds, though default installs stay onlatest.Overview
Adds
.github/workflows/prerelease-cua-cli.yml, a manually triggered pipeline to publish@onkernel/cua-clifrom any branch (no on-maintag gate likerelease-cua-cli.yml).On dispatch, you choose a
dist_tag(defaultext); the workflow rejectslatestand invalid tag names, bumps the workspace version to<base>-<dist_tag>.<run_number>, runsnpm ci, checks that pinned@onkernel/cua-ai/@onkernel/cua-agentversions exist on npm, builds those workspaces plus the CLI,npm pack, smoke-installs the tarball and assertscua --help, thennpm publish --tag <dist_tag>via OIDC (id-token: write). A job summary prints the install commandnpm install -g @onkernel/cua-cli@<dist_tag>.Concurrency is per ref (
prerelease-cua-cli-${{ github.ref_name }}); the workflow does not run the release workflow’s ptywright/Zig test-only build path.Reviewed by Cursor Bugbot for commit c683c25. Bugbot is set up for automated code reviews on this repo. Configure here.