Skip to content

Commit 5013547

Browse files
committed
fix: add missing preset build step to deploy-dev workflow
The build was failing because @ifla/preset-ifla wasn't built before trying to use it in the portal build. Added pnpm build:preset step to match the required build order: theme → preset → sites.
1 parent 1f0d1df commit 5013547

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/deploy-dev.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,9 @@ jobs:
5656
- name: Build theme package
5757
run: pnpm build:theme
5858

59+
- name: Build preset package
60+
run: pnpm build:preset
61+
5962
- name: Build portal
6063
run: pnpm exec docusaurus build portal
6164
env:
@@ -107,6 +110,9 @@ jobs:
107110
- name: Build theme package
108111
run: pnpm build:theme
109112

113+
- name: Build preset package
114+
run: pnpm build:preset
115+
110116
- name: Build ${{ matrix.standard }}
111117
run: pnpm exec docusaurus build standards/${{ matrix.standard }}
112118
env:

0 commit comments

Comments
 (0)