We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f26db0 commit 5b65fe1Copy full SHA for 5b65fe1
.github/workflows/pages-deploy.yml
@@ -31,19 +31,20 @@ jobs:
31
steps:
32
- name: Checkout
33
uses: actions/checkout@v3
34
- - name: Build
+ - name: Build Rust
35
run: |
36
curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
37
wasm-pack build string-bean-wasm --target web
38
+ - name: Build Web
39
cd web
- npm run build
40
+ npm i && npm run build
41
touch build/.nojekyll
42
- name: Setup Pages
43
uses: actions/configure-pages@v3
44
- name: Upload artifact
45
uses: actions/upload-pages-artifact@v1
46
with:
- path: "web/build"
47
+ path: web/build
48
- name: Deploy to GitHub Pages
49
id: deployment
50
uses: actions/deploy-pages@v2
0 commit comments