Skip to content

Commit fad9916

Browse files
committed
path fixes for CI
1 parent 21aafcc commit fad9916

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

β€Ž.github/workflows/pages.yml

+11-4
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,19 @@ jobs:
2525
uses: jetify-com/[email protected]
2626
with:
2727
enable-cache: true
28-
- name: Build Site
28+
- name: Build Distribution Site
2929
run: |
3030
devbox run build
31-
env:
32-
WASMBOTS_BASE: "/wasmbots"
33-
- name: Upload site artifact
31+
- name: Upload Distribution Artifact
32+
uses: actions/upload-artifact@v4
33+
with:
34+
name: wasmbots-dist
35+
path: frontend/build
36+
- name: Build GitHub Pages Site
37+
run: |
38+
cd frontend
39+
devbox run --env WASMBOTS_BASE="/wasmbots" npm run build
40+
- name: Upload GitHub Pages Artifact
3441
uses: actions/upload-pages-artifact@v3
3542
with:
3643
path: frontend/build

0 commit comments

Comments
Β (0)