diff options
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/release.yml | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 63ff97c..547fe2a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,7 +16,12 @@ jobs: - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@stable with: - toolchain: stable + targets: x86_64-unknown-linux-musl + + - name: Install musl tools + run: | + sudo apt-get update + sudo apt-get install -y musl-tools - name: Build tarball run: make tarball @@ -41,7 +46,7 @@ jobs: - name: Run PowerShell build shell: pwsh - run: ./build.ps1 + run: ./build.ps1 zipball - name: Upload artifact (Windows) uses: actions/upload-artifact@v4 |
