Files
openclaw/scripts/plugin-clawhub-release-plan.ts
Onur fa9e1e3d8e CI: add ClawHub plugin release workflow (#59179)
* CI: add ClawHub plugin release workflow

* CI: harden ClawHub plugin release workflow

* CI: finish ClawHub plugin release hardening

* CI: watch shared ClawHub release inputs

* CI: harden ClawHub publish workflow

* CI: watch more ClawHub release deps

* CI: match shared release inputs by prefix

* CI: pin ClawHub publish source commit

* CI: refresh pinned ClawHub release commit

* CI: rename ClawHub plugin release environment

---------

Co-authored-by: Onur Solmaz <onur@solmaz.io>
2026-04-03 15:40:07 +02:00

22 lines
712 B
JavaScript

#!/usr/bin/env -S node --import tsx
import { pathToFileURL } from "node:url";
import {
collectPluginClawHubReleasePlan,
parsePluginReleaseArgs,
} from "./lib/plugin-clawhub-release.ts";
export async function collectPluginReleasePlanForClawHub(argv: string[]) {
const { selection, selectionMode, baseRef, headRef } = parsePluginReleaseArgs(argv);
return await collectPluginClawHubReleasePlan({
selection,
selectionMode,
gitRange: baseRef && headRef ? { baseRef, headRef } : undefined,
});
}
if (import.meta.url === pathToFileURL(process.argv[1] ?? "").href) {
const plan = await collectPluginReleasePlanForClawHub(process.argv.slice(2));
console.log(JSON.stringify(plan, null, 2));
}