Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,10 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
registry-url: 'https://registry.npmjs.org'
node-version: '24'

- name: Upgrade npm
run: npm install -g npm@latest
- name: Verify npm runtime
run: npm --version

- name: Install dependencies
run: npm ci
Expand All @@ -34,4 +33,4 @@ jobs:
run: npm run build

- name: Publish to NPM
run: npm publish --provenance --access public
run: npm publish --access public
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to `@useorgx/openclaw-plugin` are documented in this file.

## 0.7.33 - 2026-04-13

### Release Management
- Switched the publish workflow to Node 24 so the release job uses an npm runtime that supports trusted publishing without a fragile global npm self-upgrade.
- Removed token-oriented npm registry setup from the release workflow so GitHub OIDC trusted publishing can drive npm authentication.
- Patch release bump after the `v0.7.32` release workflow failed before publish during the npm upgrade step.

## 0.7.32 - 2026-04-13

### Release Management
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -762,7 +762,7 @@ Not all of the above is accidental. Some context for why the architecture looks
## Maintainers: Release to NPM

This repo publishes on GitHub Release via `.github/workflows/publish.yml`.
The npm package must have trusted publishing configured for this repository and workflow so the release can publish with provenance through GitHub OIDC.
The npm package must have trusted publishing configured for this repository and workflow so the Node 24 release job can publish through GitHub OIDC without `NPM_TOKEN`.

1. Update versions
- `package.json` version (NPM version)
Expand All @@ -774,7 +774,7 @@ The npm package must have trusted publishing configured for this repository and
- `npm run build`
- Optional: `npm run verify:clean-install`
3. Publish
- Create a GitHub release for the tag (workflow publishes with provenance)
- Create a GitHub release for the tag (the workflow publishes through npm trusted publishing)
4. Smoke test
- `openclaw plugins install @useorgx/openclaw-plugin@<version>`
- Verify `http://127.0.0.1:18789/orgx/live` pairing and `http://127.0.0.1:18789/orgx/mcp` MCP bridge
Expand Down
2 changes: 1 addition & 1 deletion openclaw.plugin.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "orgx",
"name": "OrgX for OpenClaw",
"version": "0.7.32",
"version": "0.7.33",
"description": "Persistent organizational memory and coordinated execution for OpenClaw agents",
"entry": "./dist/index.js",
"author": "OrgX Team",
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@useorgx/openclaw-plugin",
"version": "0.7.32",
"version": "0.7.33",
"description": "Persistent organizational memory and coordination for OpenClaw agents",
"type": "module",
"main": "./dist/index.js",
Expand Down
Loading