From 24f0318fc04bd460ff3e86ca9ad033c2323e2987 Mon Sep 17 00:00:00 2001 From: Bart van der Braak Date: Mon, 6 Nov 2023 06:00:01 +0100 Subject: [PATCH] fix: use non-musl target for linux build --- .github/workflows/deploy.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index e6b2871..df4b4c7 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -18,7 +18,7 @@ jobs: include: - build: linux os: ubuntu-latest - target: x86_64-unknown-linux-musl + target: x86_64-unknown-linux-gnu - build: macos os: macos-latest @@ -40,11 +40,6 @@ jobs: uses: dtolnay/rust-toolchain@stable with: targets: ${{ matrix.target }} - - - name: List toolchain installed components - shell: bash - run: | - rustup component list - name: Build uses: actions-rs/cargo@v1