From c287591c6a76d06758b9b91958ff8a5218b4e802 Mon Sep 17 00:00:00 2001 From: Luc Georges Date: Wed, 26 Jun 2024 11:19:10 +0200 Subject: [PATCH] fix: install `x86_64-unknown-linux-gnu` toolchain for musl --- .github/workflows/release.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 46994d6..62ab1c0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -106,6 +106,12 @@ jobs: with: fetch-depth: ${{ env.FETCH_DEPTH }} + - name: Install Rust toolchain + run: | + rustup update --no-self-update stable + rustup target add x86_64-unknown-linux-gnu + rustup component add rust-src + - name: Dist run: cargo xtask dist