Skip to content

Commit 4fdade3

Browse files
comments
1 parent 29a230e commit 4fdade3

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

.github/workflows/build.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
name: Upload prebuild
6565
uses: actions/upload-artifact@v4
6666
with:
67-
name: build-linux-${{ matrix.linux_arch }}
67+
name: build-linux-glibc-${{ matrix.linux_arch }}
6868
path: prebuilds/
6969
if-no-files-found: 'error'
7070
retention-days: 1
@@ -99,4 +99,13 @@ jobs:
9999
--build-arg="PLATFORM=${{ matrix.linux_arch == 'arm64' && 'arm64v8' || matrix.linux_arch }}" \
100100
--output type=local,dest=./prebuilds,platform-split=false \
101101
-f ./.github/docker/Dockerfile.musl \
102-
.
102+
.
103+
- id: upload
104+
name: Upload prebuild
105+
uses: actions/upload-artifact@v4
106+
with:
107+
name: build-linux-musl-${{ matrix.linux_arch }}
108+
path: prebuilds/
109+
if-no-files-found: "error"
110+
retention-days: 1
111+
compression-level: 0

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,9 @@ Below are the platforms that are available as prebuilds on each github release.
9494
- s390x
9595
- arm64
9696
- x64
97+
- Linux MUSL 1.1.20
98+
- arm64
99+
- x64
97100
- MacOS universal binary
98101
- x64
99102
- arm64

0 commit comments

Comments
 (0)