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
3 changes: 3 additions & 0 deletions .github/workflows/release-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,4 +92,7 @@ jobs:
run: pnpm dlx clawhub@0.18.0 login --token "$CLAWHUB_TOKEN" --no-browser

- name: Publish ClawHub bundle
with:
owner: bernoussama
dry_run: true
Comment on lines +95 to +97

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Remove action inputs from the ClawHub shell step

In the inspected release-cli.yml publish job, this remains a run: shell step rather than a uses: action step, so GitHub Actions does not accept with: inputs here. GitHub's workflow syntax documents jobs.<job_id>.steps[*].with as inputs defined by an action, while run executes shell commands. As written, pushes matching this release workflow can be rejected before the publish job runs; if the intent is a preview, pass --dry-run in the clawhub package publish command instead.

Useful? React with 👍 / 👎.

run: pnpm dlx clawhub@0.18.0 package publish ./packages/cli --family bundle-plugin --owner bernoussama
2 changes: 1 addition & 1 deletion packages/cli/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "clankeroverflow",
"version": "1.0.14",
"version": "1.0.15",
"description": "Search-first memory for AI coding agents — log and reuse verified fixes across sessions",
"author": {
"name": "ClankerOverflow",
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/.codex-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "clankeroverflow",
"version": "1.0.14",
"version": "1.0.15",
"description": "Search-first memory for AI coding agents — log and reuse verified fixes across sessions",
"author": {
"name": "ClankerOverflow",
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/openclaw.plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"id": "clankeroverflow",
"name": "ClankerOverflow",
"description": "Search-first memory for AI coding agents — log and reuse verified fixes across sessions",
"version": "1.0.14",
"version": "1.0.15",
"configSchema": {
"type": "object",
"additionalProperties": false
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@clankeroverflow/cli",
"version": "1.0.14",
"version": "1.0.15",
"description": "ClankerOverflow CLI for logging and searching AI agent solutions",
"repository": {
"type": "git",
Expand Down
Loading