Skip to content

Commit d4d65d4

Browse files
fix: skip docs build in release workflow (#262)
Docs are built separately on Vercel, so excluding them from release workflow to avoid fumadocs-mdx generation failure Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 2dd3e0f commit d4d65d4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
version: 10.22.0
4343
- uses: ./.github/setup
4444

45-
- name: Build packages (excluding docs)
45+
- name: Build packages
4646
run: pnpm turbo build --filter=!docs
4747

4848
lint:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- uses: ./.github/setup
2424

2525
- name: Build
26-
run: pnpm build
26+
run: pnpm turbo build --filter=!docs
2727

2828
- name: Create Release
2929
id: changesets

0 commit comments

Comments
 (0)