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 9d35c739ce - Show all commits

View file

@ -210,7 +210,8 @@ jobs:
- name: Install Rust toolchain and wasm-pack - name: Install Rust toolchain and wasm-pack
run: | run: |
# Install Rust using rustup with wget # Install Rust using rustup with wget - set HOME to root directory
export HOME=/root
wget -O - https://sh.rustup.rs | sh -s -- -y wget -O - https://sh.rustup.rs | sh -s -- -y
source $HOME/.cargo/env source $HOME/.cargo/env
@ -230,6 +231,7 @@ jobs:
- name: Build WASM module - name: Build WASM module
run: | run: |
export HOME=/root
source $HOME/.cargo/env source $HOME/.cargo/env
cd frontend/wasm cd frontend/wasm
wasm-pack build --target web wasm-pack build --target web