Skip to content
Merged
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
11 changes: 6 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,17 @@ jobs:
build:
name: Build ${{ matrix.target }}
runs-on: ${{ matrix.os }}
permissions:
contents: write
strategy:
fail-fast: false
matrix:
include:
# Linux 64-bit Intel/AMD (Fully Static Musl - Runs everywhere)
- target: x86_64-unknown-linux-musl
# Linux 64-bit Intel/AMD
- target: x86_64-unknown-linux-gnu
os: ubuntu-latest
use_cross: true
# Linux 64-bit ARM (Fully Static Musl - Raspberry Pi, AWS Graviton)
- target: aarch64-unknown-linux-musl
# Linux 64-bit ARM (Raspberry Pi, AWS Graviton)
- target: aarch64-unknown-linux-gnu
os: ubuntu-latest
use_cross: true
# macOS Intel (Older Macs)
Expand Down
Loading