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:
parent
2ce763b850
commit
cba596e31a
1 changed files with 1 additions and 1 deletions
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
|
|
@ -21,7 +21,7 @@ jobs:
|
|||
matrix:
|
||||
include:
|
||||
- os: ubuntu-latest
|
||||
target: blacksmith-2vcpu-ubuntu-2404
|
||||
target: x86_64-unknown-linux-gnu
|
||||
artifact: zeroclaw
|
||||
- os: macos-latest
|
||||
target: x86_64-apple-darwin
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue