Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:
jobs:
build:
name: Build ${{ matrix.target }}
runs-on: ubuntu-latest
runs-on: ${{ matrix.runs_on }}
strategy:
fail-fast: false
matrix:
Expand All @@ -20,11 +20,19 @@ jobs:
- target: x86_64-unknown-linux-gnu
artifact_name: swcli-linux-gnu-x86_64
use_cross: false
runs_on: ubuntu-latest

# Alpine / musl — fully static binary
- target: x86_64-unknown-linux-musl
artifact_name: swcli-linux-musl-x86_64
use_cross: true
runs_on: ubuntu-latest

# macOS Apple Silicon
- target: aarch64-apple-darwin
artifact_name: swcli-macos-arm64
use_cross: false
runs_on: macos-latest

steps:
- uses: actions/checkout@v6
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading