fix: glibc error when patching on Linux (#52)

This commit is contained in:
Erikas Taroza
2023-07-08 06:30:42 -07:00
committed by GitHub
parent 0be41d9d85
commit d3ec0a3aaf
+6 -1
View File
@@ -11,7 +11,11 @@ jobs:
upload-artifacts:
strategy:
matrix:
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
include:
- target: x86_64-unknown-linux-musl
os: ubuntu-latest
- os: macos-latest
- os: windows-latest
runs-on: ${{ matrix.os }}
@@ -22,6 +26,7 @@ jobs:
- uses: taiki-e/upload-rust-binary-action@v1
with:
bin: "patch"
target: ${{ matrix.target }}
tar: none
zip: all
token: ${{ secrets.GITHUB_TOKEN }}