Skip to content

Commit 8fb953d

Browse files
LaurentClaesclaude
andcommitted
Fix lerna publish: move bump arg to positional and drop deprecated flag
The bump type ($VERSION) must be the first positional argument after `publish` — placing it after flags caused Lerna to ignore --yes and prompt interactively, breaking CI. Also removed deprecated --no-verify-access flag. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent db35627 commit 8fb953d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ VERSION=`npx auto version`
66

77
if [ ! -z "$VERSION" ]; then
88
npx auto changelog
9-
npx lerna publish --yes --no-verify-access --force-publish $VERSION -m '%v [skip ci]'
9+
npx lerna publish $VERSION --yes --force-publish -m '%v [skip ci]'
1010
fi

0 commit comments

Comments
 (0)