fix: add cli-shared publishing to release workflow

This commit is contained in:
Nathan Flurry 2026-02-02 18:58:09 -08:00
parent 7404e86975
commit e0573ebaf5
3 changed files with 51 additions and 2 deletions

View file

@ -17,6 +17,11 @@ export async function updateVersion(opts: ReleaseOpts) {
find: /\[workspace\.package\]\nversion = ".*"/,
replace: `[workspace.package]\nversion = "${opts.version}"`,
},
{
path: "sdks/cli-shared/package.json",
find: /"version": ".*"/,
replace: `"version": "${opts.version}"`,
},
{
path: "sdks/typescript/package.json",
find: /"version": ".*"/,