openhands-ui/PUBLISHING.md
package.json has changed compared to the previous commitNPM_TOKEN secretUpdate the version in openhands-ui/package.json:
cd openhands-ui
# For patch release (1.0.0 → 1.0.1)
npm version patch
# For minor release (1.0.0 → 1.1.0)
npm version minor
# For major release (1.0.0 → 2.0.0)
npm version major
# For pre-release (1.0.0 → 1.0.1-beta.0)
npm version prerelease --preid=beta
Commit and push the version change:
git add package.json
git commit -m "chore(ui): bump version to X.X.X"
Create a PR with your changes and the version bump
Merge the PR - the package will be automatically published
If the automated workflow fails, you can manually publish:
cd openhands-ui
bun install
bun run build
npm publish