diff options
author | David Peter <mail@david-peter.de> | 2023-12-19 11:20:17 +0100 |
---|---|---|
committer | David Peter <sharkdp@users.noreply.github.com> | 2023-12-19 11:28:59 +0100 |
commit | d9c4e6239fc1807bce1bb6aca4426f3880230a84 (patch) | |
tree | 9153ea0b35d7a6c9171bade49badf3039342f684 | |
parent | 61ebd9be6a0c0e380028509be9553aac7931fe08 (diff) |
Fix names for ARM Debian packagesv9.0.0
-rw-r--r-- | .github/workflows/CICD.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml index e3182b3..228dbb4 100644 --- a/.github/workflows/CICD.yml +++ b/.github/workflows/CICD.yml @@ -209,7 +209,7 @@ jobs: DPKG_BASENAME=${{ needs.crate_metadata.outputs.name }} DPKG_CONFLICTS=${{ needs.crate_metadata.outputs.name }}-musl - case ${{ matrix.job.target }} in *-musl) DPKG_BASENAME=${{ needs.crate_metadata.outputs.name }}-musl ; DPKG_CONFLICTS=${{ needs.crate_metadata.outputs.name }} ;; esac; + case ${{ matrix.job.target }} in *-musl*) DPKG_BASENAME=${{ needs.crate_metadata.outputs.name }}-musl ; DPKG_CONFLICTS=${{ needs.crate_metadata.outputs.name }} ;; esac; DPKG_VERSION=${{ needs.crate_metadata.outputs.version }} unset DPKG_ARCH |