feature/1-self-sovereign-passports-for-user-identity #2

Merged
continuist merged 29 commits from feature/1-self-sovereign-passports-for-user-identity into main 2025-11-01 10:32:30 -04:00
Showing only changes of commit bb505df141 - Show all commits

View file

@ -226,8 +226,11 @@ jobs:
echo '[net]' >> $HOME/.cargo/config.toml
echo 'git-fetch-with-cli = true' >> $HOME/.cargo/config.toml
# Install wasm-pack
cargo install wasm-pack
# Install wasm-pack using pre-built binary to avoid C compiler dependency
wget https://github.com/rustwasm/wasm-pack/releases/download/v0.13.1/wasm-pack-v0.13.1-x86_64-unknown-linux-musl.tar.gz
tar -xzf wasm-pack-v0.13.1-x86_64-unknown-linux-musl.tar.gz
mv wasm-pack-v0.13.1-x86_64-unknown-linux-musl/wasm-pack /usr/local/bin/
chmod +x /usr/local/bin/wasm-pack
- name: Build WASM module
run: |