From d604d4ed571ef6f8480ab21757264bb94913bad6 Mon Sep 17 00:00:00 2001 From: scx1332 Date: Mon, 9 Oct 2023 15:31:48 +0200 Subject: [PATCH] Install musl tools when native build --- .github/workflows/release.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 016f4484..a545a7e4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -60,6 +60,12 @@ jobs: - name: Checkout uses: actions/checkout@v3 + - name: Update musl tools + if: matrix.build-with == 'cargo' + run: | + apt update + apt install -y musl-tools + - name: Update Rust and add toolchain ${{ matrix.target }} if: matrix.build-with == 'cargo' run: |