From 131f6f3cf7f893d9fb6a577cc807bde61c34b10c Mon Sep 17 00:00:00 2001 From: Evan-Kim2028 Date: Sat, 26 Oct 2024 14:58:39 -0400 Subject: [PATCH] fix: rye ci installation --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a74d4c0..b278e00 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,8 +22,10 @@ jobs: # 3. Install Rye - name: Install Rye + env: + RYE_INSTALL_OPTION: "--yes" # Skips all prompts during installation run: | - curl -sSf https://rye.astral.sh/get | bash --yes + curl -sSf https://rye.astral.sh/get | bash -s $RYE_INSTALL_OPTION # 4. Configure Rye for global shims - name: Configure Rye