Skip to content

Commit ff43c8e

Browse files
committed
fix(cd): install missing target
1 parent 48a721e commit ff43c8e

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,9 @@ jobs:
7676
- name: Setup Rust
7777
uses: dtolnay/rust-toolchain@stable
7878
with:
79-
targets: ${{ matrix.target }}
79+
targets: |
80+
wasm32-unknown-unknown
81+
${{ matrix.target }}
8082
8183
- name: Install Linker for ARM64 Linux GNU
8284
if: ${{ matrix.target == 'aarch64-unknown-linux-gnu' }}
@@ -139,6 +141,10 @@ jobs:
139141

140142
- name: Setup Rust
141143
uses: dtolnay/rust-toolchain@stable
144+
with:
145+
targets: |
146+
wasm32-unknown-unknown
147+
${{ matrix.target }}
142148
143149
- name: Setup Cargo Binstall
144150
uses: cargo-bins/cargo-binstall@main

0 commit comments

Comments
 (0)