We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5cab5fa + bbfbad8 commit e5fb3ccCopy full SHA for e5fb3cc
.github/workflows/release.yaml
@@ -81,6 +81,15 @@ jobs:
81
- name: Checkout Repository including Tags
82
uses: actions/checkout@v4
83
84
+ - name: Install Rust toolchain
85
+ shell: bash
86
+ run: |
87
+ rustup toolchain install ${{ env.RUST_VERSION }} --no-self-update
88
+ rustup default ${{ env.RUST_VERSION }}
89
+
90
91
+ run: rustup target add wasm32-wasip1 wasm32-unknown-unknown --toolchain ${{ env.RUST_VERSION }}
92
93
- name: Install Node.js
94
uses: actions/setup-node@v3
95
with:
0 commit comments