Skip to content

Commit cb266a0

Browse files
beilunyangclaude
andcommitted
fix(ci): install CLI dependencies separately in publish workflow
The CLI package is not part of a pnpm workspace, so its dependencies need to be installed from within packages/cli/ directly. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 55c5418 commit cb266a0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/publish-cli.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ jobs:
2727
- name: Setup Bun
2828
uses: oven-sh/setup-bun@v2
2929

30-
- name: Install dependencies
31-
run: pnpm install --frozen-lockfile
30+
- name: Install CLI dependencies
31+
run: cd packages/cli && pnpm install
3232

3333
- name: Build
3434
run: cd packages/cli && bun build ./src/index.ts --outdir ./dist --target=node

0 commit comments

Comments
 (0)