Skip to content

Commit

Permalink
Add musl binary
Browse files Browse the repository at this point in the history
  • Loading branch information
0xkorin committed May 15, 2023
1 parent 8db903f commit b310ff7
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,19 @@ jobs:
with:
token: ${{ secrets.GITHUB_TOKEN }}
upload-assets:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- target: x86_64-unknown-linux-gnu
os: ubuntu-latest
- target: x86_64-unknown-linux-musl
os: ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: taiki-e/upload-rust-binary-action@v1
with:
bin: keymaker
target: ${{ matrix.target }}
archive: $bin-$tag-$target
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit b310ff7

Please sign in to comment.