From cba596e31aa9617996f898c11de9f42ceda297c5 Mon Sep 17 00:00:00 2001 From: Alex Gorevski Date: Tue, 17 Feb 2026 10:30:08 -0800 Subject: [PATCH] fix(ci): correct release matrix target triple for ubuntu (#589) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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> --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e8c3cd3..7b14219 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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