From ab048a84168ad5a1f770eed4e4948cb32f1c0241 Mon Sep 17 00:00:00 2001 From: continuist Date: Sun, 13 Apr 2025 00:13:26 -0400 Subject: [PATCH] Make rust toolchain install non-interactively --- .forgejo/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.forgejo/workflows/main.yml b/.forgejo/workflows/main.yml index c9de26f..30e62e6 100644 --- a/.forgejo/workflows/main.yml +++ b/.forgejo/workflows/main.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/checkout@v4 # Checkout the repository - name: Install Rust toolchain run: | - curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh - + curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y source $HOME/.cargo/env - name: Build run: cargo build --verbose