fix: release pipeline for npm

This commit is contained in:
Nathan Flurry 2026-02-11 09:23:35 -08:00
parent 6b1950f9ab
commit 8a1d17f165
5 changed files with 655 additions and 480 deletions

View file

@ -22,6 +22,11 @@ export async function updateVersion(opts: ReleaseOpts) {
find: /"version": ".*"/,
replace: `"version": "${opts.version}"`,
},
{
path: "sdks/acp-http-client/package.json",
find: /"version": ".*"/,
replace: `"version": "${opts.version}"`,
},
{
path: "sdks/typescript/package.json",
find: /"version": ".*"/,
@ -56,8 +61,9 @@ export async function updateVersion(opts: ReleaseOpts) {
"sandbox-agent-error",
"sandbox-agent-agent-management",
"sandbox-agent-agent-credentials",
"sandbox-agent-universal-agent-schema",
"sandbox-agent-extracted-agent-schemas",
"sandbox-agent-opencode-adapter",
"sandbox-agent-opencode-server-manager",
"acp-http-adapter",
];
const cargoTomlPath = `${opts.root}/Cargo.toml`;