From b8ac02a714ebceb961f8e7a63ba27f76fe61afc9 Mon Sep 17 00:00:00 2001 From: Kailan Blanks Date: Mon, 27 Apr 2026 14:47:39 +0100 Subject: [PATCH] Restore explicit Rust target install in release workflow --- .github/workflows/release.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index feb77bbb..53f8622c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -39,6 +39,10 @@ jobs: with: submodules: true + - name: Install Rust + run: rustup target add ${{ matrix.rust_arch }}-${{ matrix.rust_abi }} + shell: bash + - name: Install C cross-compilation toolchain if: ${{ matrix.name == 'linux' && matrix.arch != 'amd64' }} run: |