From f51e9dd222205f46a760468f742f14f593d77c94 Mon Sep 17 00:00:00 2001 From: Ethan Smith Date: Sun, 5 Sep 2021 01:29:13 -0700 Subject: [PATCH] Conditionally build on musl and fix typo --- .github/workflows/CICD.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml index 861ca39..fe92764 100644 --- a/.github/workflows/CICD.yml +++ b/.github/workflows/CICD.yml @@ -206,15 +206,16 @@ jobs: command: build args: --release --target=${{ matrix.job.target }} ${{ matrix.job.cargo-options }} ${{ steps.vars.outputs.CARGO_FEATURES_OPTION }} - name: Install cargo-deb - uses: action-rs/cargo@v1 + uses: actions-rs/cargo@v1 with: command: install args: cargo-deb - name: Build deb - uses: action-rs/cargo@v1 + uses: actions-rs/cargo@v1 with: command: deb args: --no-build --target=${{ matrix.job.target }} + if: ${{ contains(matrix.job.target, "musl") }} - name: Test uses: actions-rs/cargo@v1 with: