Skip to content

Commit 98ae7c9

Browse files
committed
fix(ci): correct Zig download URL format in release-cli workflow
The Zig download URL uses arch-os ordering (zig-x86_64-linux-*), not os-arch ordering (zig-linux-x86_64-*). Assisted-By: Claude (Anthropic AI) <noreply@anthropic.com> Signed-off-by: Paolo Dettori <dettori@us.ibm.com>
1 parent 1ef4c0b commit 98ae7c9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/kagenti-release-cli.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ jobs:
5151
5252
- name: Install Zig
5353
run: |
54-
curl -sSfL "https://ziglang.org/download/${ZIG_VERSION}/zig-linux-x86_64-${ZIG_VERSION}.tar.xz" | tar -xJ
55-
echo "$PWD/zig-linux-x86_64-${ZIG_VERSION}" >> "$GITHUB_PATH"
54+
curl -sSfL "https://ziglang.org/download/${ZIG_VERSION}/zig-x86_64-linux-${ZIG_VERSION}.tar.xz" | tar -xJ
55+
echo "$PWD/zig-x86_64-linux-${ZIG_VERSION}" >> "$GITHUB_PATH"
5656
5757
- name: Install system dependencies
5858
run: sudo apt-get update && sudo apt-get install -y cmake

0 commit comments

Comments
 (0)