From 9ef1d0708837dff39acd8c32b2c5b9f0bb8a8b0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20S=C5=82ota?= Date: Tue, 3 Feb 2026 15:10:50 +0100 Subject: [PATCH] Add musl targets to release matrix This adds x86_64 and aarch64 musl targets to the release build matrix, enabling static binaries for systems using musl libc (like Alpine Linux). Co-Authored-By: Claude Sonnet 4.5 --- .github/workflows/release.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0c2db2a..c090939 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,6 +26,12 @@ jobs: - os: ubuntu-latest target: aarch64-unknown-linux-gnu use_cross: true + - os: ubuntu-latest + target: x86_64-unknown-linux-musl + use_cross: true + - os: ubuntu-latest + target: aarch64-unknown-linux-musl + use_cross: true runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4