fix(ci): correct release matrix target triple for ubuntu (#589)

The ubuntu-latest matrix entry had its target set to
'blacksmith-2vcpu-ubuntu-2404', which is a runner label — not a valid
Rust target triple. This causes 'cargo build --target' to fail or
produce artifacts for the wrong architecture.

Replace with 'x86_64-unknown-linux-gnu', the correct Rust target triple
for the ubuntu runner.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
Alex Gorevski 2026-02-17 10:30:08 -08:00 committed by GitHub
parent 2ce763b850
commit cba596e31a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -21,7 +21,7 @@ jobs:
matrix: matrix:
include: include:
- os: ubuntu-latest - os: ubuntu-latest
target: blacksmith-2vcpu-ubuntu-2404 target: x86_64-unknown-linux-gnu
artifact: zeroclaw artifact: zeroclaw
- os: macos-latest - os: macos-latest
target: x86_64-apple-darwin target: x86_64-apple-darwin