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
7 changes: 4 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,12 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
node-version: '22'
registry-url: 'https://registry.npmjs.org'

- name: Upgrade npm
run: npm install -g npm@latest

- name: Install dependencies
run: npm ci

Expand All @@ -32,5 +35,3 @@ jobs:

- name: Publish to NPM
run: npm publish --provenance --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

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

## 0.7.32 - 2026-04-13

### Release Management
- Switched the GitHub release workflow to npm trusted publishing with provenance so releases do not depend on a missing long-lived npm token secret.
- Patch release bump for npm package, lockfile, and plugin manifest metadata.

## 0.7.31 - 2026-04-13

### Release Management
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -762,6 +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.

1. Update versions
- `package.json` version (NPM version)
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.31",
"version": "0.7.32",
"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.31",
"version": "0.7.32",
"description": "Persistent organizational memory and coordination for OpenClaw agents",
"type": "module",
"main": "./dist/index.js",
Expand Down
Loading