Skip to content

Commit 31037f5

Browse files
azuclaude
andcommitted
fix(ci): build root package before website deployment
preset-jtf-styleモジュールがexampleから参照できるよう、ルートでビルドを実行してからwebsite deployを行うように修正 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 86982cf commit 31037f5

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/website.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,11 @@ jobs:
2424
- name: Set Env
2525
run: |
2626
echo "CURRENT_VERSION=$(node -p 'require("./package.json").version')" >> $GITHUB_ENV
27-
- name: Install
28-
run: pnpm install
29-
- name: Build
27+
- name: Install and Build Root
28+
run: |
29+
pnpm install
30+
pnpm run build
31+
- name: Build Website
3032
run: |
3133
pnpm install
3234
pnpm run website -- --metadataVersion="${CURRENT_VERSION}"

0 commit comments

Comments
 (0)