From bbc9489692a59473704526d293ea5b302193abbc Mon Sep 17 00:00:00 2001 From: Avii Date: Fri, 12 Jul 2024 13:08:43 +0200 Subject: [PATCH] try setup toolchain in windows --- .gitea/workflows/build-windows.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/build-windows.yaml b/.gitea/workflows/build-windows.yaml index 0c18c18..6c66c52 100644 --- a/.gitea/workflows/build-windows.yaml +++ b/.gitea/workflows/build-windows.yaml @@ -45,15 +45,15 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - name: Setup Rust toolchain and cache - if: matrix.platform != 'windows-2022' + # if: matrix.platform != 'windows-2022' uses: actions-rust-lang/setup-rust-toolchain@v1 with: toolchain: nightly - - name: Ensure rust is up to date - if: matrix.platform == 'windows-2022' - run: | - rustup update - rustup toolchain install nightly + # - name: Ensure rust is up to date + # if: matrix.platform == 'windows-2022' + # run: | + # rustup update + # rustup toolchain install nightly - name: Create output directory run: mkdir -f output - name: Build release