Skip to content

Commit

Permalink
build: add a musl deb package build to release (#568)
Browse files Browse the repository at this point in the history
  • Loading branch information
fujiapple852 committed May 18, 2023
1 parent 867f2f9 commit 4ea011d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ jobs:

- name: Create Debian package
shell: bash
if: startsWith(matrix.build, 'linux-gnu')
if: startsWith(matrix.build, 'linux-gnu') || startsWith(matrix.build, 'linux-musl')
run: |
cargo install cargo-deb
cargo deb --target ${{ matrix.target }} --deb-version ${{ needs.create-release.outputs.trip_version }}
Expand All @@ -140,7 +140,7 @@ jobs:
echo "DPKG_ARCH=${DPKG_ARCH}" >> $GITHUB_ENV
- name: Upload Deb Release Asset
if: startsWith(matrix.build, 'linux-gnu')
if: startsWith(matrix.build, 'linux-gnu') || startsWith(matrix.build, 'linux-musl')
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 4ea011d

Please sign in to comment.