Skip to content

Commit 35841f4

Browse files
committed
update rust target to wasm32-wasip1
Signed-off-by: Michelle Dhanani <[email protected]>
1 parent 8383179 commit 35841f4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
components: clippy, rustfmt
2323

2424
- name: Install Wasm Rust target
25-
run: rustup target add wasm32-wasi
25+
run: rustup target add wasm32-wasip1
2626

2727
- name: Install spin-test
2828
run: |

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
components: clippy, rustfmt
2525

2626
- name: Install Wasm Rust target
27-
run: rustup target add wasm32-wasi
27+
run: rustup target add wasm32-wasip1
2828

2929
- name: Make
3030
run: make
@@ -33,13 +33,13 @@ jobs:
3333

3434
- name: generate checksums
3535
run: |
36-
sha256sum target/wasm32-wasi/release/spin_static_fs.wasm > checksums-${{ env.RELEASE_VERSION }}.txt
36+
sha256sum target/wasm32-wasip1/release/spin_static_fs.wasm > checksums-${{ env.RELEASE_VERSION }}.txt
3737
3838
- name: Create release
3939
uses: softprops/action-gh-release@v1
4040
with:
4141
fail_on_unmatched_files: true
4242
generate_release_notes: true
4343
files: |
44-
target/wasm32-wasi/release/spin_static_fs.wasm
44+
target/wasm32-wasip1/release/spin_static_fs.wasm
4545
checksums-${{ env.RELEASE_VERSION }}.txt

0 commit comments

Comments
 (0)