From eb7590e4dff854c92d27aafb09587465d4e23968 Mon Sep 17 00:00:00 2001 From: Arnaud Date: Mon, 13 Oct 2025 14:15:26 +0200 Subject: [PATCH] Fix rust version during build --- .github/workflows/artifacts.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/artifacts.yml b/.github/workflows/artifacts.yml index 07b6f54..f7118b0 100644 --- a/.github/workflows/artifacts.yml +++ b/.github/workflows/artifacts.yml @@ -2,8 +2,8 @@ name: Artifacts on: push: - tags: - - "v*" + # tags: + # - "v*" workflow_dispatch: jobs: @@ -39,6 +39,11 @@ jobs: with: go-version-file: go.mod + - name: Install Rust 1.85.0 + uses: dtolnay/rust-toolchain@master + with: + toolchain: 1.85.0 + - name: Record submodule commit run: git -C vendor/nim-codex rev-parse HEAD > vendor/nim-codex/.codex-commit @@ -61,7 +66,6 @@ jobs: mingw-w64-ucrt-x86_64-toolchain mingw-w64-ucrt-x86_64-cmake mingw-w64-ucrt-x86_64-ntldd-git - mingw-w64-ucrt-x86_64-rust - name: Build libcodex (Linux and MacOS) if: matrix.target.os != 'windows-latest' && steps.cache-libcodex.outputs.cache-hit != 'true'