We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb4109b commit 2a2aae7Copy full SHA for 2a2aae7
1 file changed
.github/workflows/static.yml
@@ -38,11 +38,14 @@ jobs:
38
node-version: 18
39
cache: npm
40
41
- - name: Install dependencies
42
- run: npm ci
+ - name: Install frontend dependencies
+ run: npm ci --prefix frontend
43
44
- - name: Build
45
- run: npm run build
+ - name: Build frontend
+ run: npm --prefix frontend run build
46
+
47
+ - name: Publish frontend build to root
48
+ run: node scripts/publishRoot.js
49
50
- name: Setup Pages
51
uses: actions/configure-pages@v5
0 commit comments