We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21aafcc commit fad9916Copy full SHA for fad9916
β.github/workflows/pages.yml
@@ -25,12 +25,19 @@ jobs:
25
uses: jetify-com/[email protected]
26
with:
27
enable-cache: true
28
- - name: Build Site
+ - name: Build Distribution Site
29
run: |
30
devbox run build
31
- env:
32
- WASMBOTS_BASE: "/wasmbots"
33
- - name: Upload site artifact
+ - name: Upload Distribution Artifact
+ uses: actions/upload-artifact@v4
+ 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
41
uses: actions/upload-pages-artifact@v3
42
43
path: frontend/build
0 commit comments