From 2a2c687e3c732c3c161241e7c24cb8664d5258b3 Mon Sep 17 00:00:00 2001 From: msukkari Date: Thu, 2 Jul 2026 12:30:15 -0700 Subject: [PATCH] fix(ci): pass --no-workspaces-update to npm version in setup-sourcebot release Co-Authored-By: Claude Opus 4.8 (1M context) --- .github/workflows/release-setup-sourcebot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-setup-sourcebot.yml b/.github/workflows/release-setup-sourcebot.yml index 932f61089..657f2b25e 100644 --- a/.github/workflows/release-setup-sourcebot.yml +++ b/.github/workflows/release-setup-sourcebot.yml @@ -72,7 +72,7 @@ jobs: # Bump packages/setupWizard/package.json only. --no-git-tag-version # writes the new version without creating a commit or tag (we do that # ourselves, with a release-specific tag, further down). - npm version "${{ inputs.bump_type }}" --no-git-tag-version + npm version "${{ inputs.bump_type }}" --no-git-tag-version --no-workspaces-update VERSION=$(node -p "require('./package.json').version") echo "Bumped setup-sourcebot to $VERSION" echo "version=$VERSION" >> "$GITHUB_OUTPUT"