Skip to content

Commit

Permalink
feat: build deb with glibc
Browse files Browse the repository at this point in the history
  • Loading branch information
desbma-s1n committed Apr 3, 2024
1 parent 91d363c commit 09e6f66
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,14 @@ jobs:
with:
profile: minimal
toolchain: stable
target: x86_64-unknown-linux-musl
target: x86_64-unknown-linux-gnu
- uses: taiki-e/install-action@v2
with:
tool: cargo-deb
- run: cargo deb --target x86_64-unknown-linux-musl
- run: cargo deb --target x86_64-unknown-linux-gnu
env:
RUSTFLAGS: "-C target-feature=+crt-static"
- uses: softprops/action-gh-release@v1
with:
files: target/x86_64-unknown-linux-musl/debian/shh_*.deb
files: target/x86_64-unknown-linux-gnu/debian/shh_*.deb
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 09e6f66

Please sign in to comment.