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 7a69ac0 commit 94103eaCopy full SHA for 94103ea
.github/workflows/deploy-to-ghpages.yml
@@ -27,12 +27,15 @@ jobs:
27
path: ~/.npm
28
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
29
30
- # Remove this unless you use a plugin that needs ./.cache
31
- # - name: Persist Eleventy .cache
32
- # uses: actions/cache@v3
33
- # with:
34
- # path: ./.cache
35
- # key: ${{ runner.os }}-eleventy-fetch-cache
+ - name: Install Rust
+ uses: actions-rs/toolchain@v1
+ with:
+ toolchain: stable
+ target: wasm32-unknown-unknown
+ override: true
36
+
37
+ - name: Install wasm-pack
38
+ run: cargo install wasm-pack
39
40
- run: npm ci
41
- run: npm run build-ghpages
0 commit comments