From 9d35c739ce9361f016f21c2718f01f19fa016148 Mon Sep 17 00:00:00 2001 From: continuist Date: Sat, 25 Oct 2025 19:40:20 -0400 Subject: [PATCH] Change home dir for rust install --- .forgejo/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index 6025d08..cb7565e 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -210,7 +210,8 @@ jobs: - name: Install Rust toolchain and wasm-pack 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 source $HOME/.cargo/env @@ -230,6 +231,7 @@ jobs: - name: Build WASM module run: | + export HOME=/root source $HOME/.cargo/env cd frontend/wasm wasm-pack build --target web