Conditionally build on musl and fix typo

This commit is contained in:
Ethan Smith
2021-09-05 01:29:13 -07:00
committed by andy.boot
parent c25f7d342c
commit f51e9dd222

View File

@@ -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: