From 03d2e7b7509d41d73d3533c1e2444251f07f6861 Mon Sep 17 00:00:00 2001 From: Stephen Gutekanst Date: Wed, 12 Jul 2023 21:50:02 -0700 Subject: [PATCH] CI: use pkg.machengine.org for Zig binaries Signed-off-by: Stephen Gutekanst --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1a524f8..c1da093 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,6 +13,6 @@ jobs: - name: Setup Zig run: | sudo apt install xz-utils - sudo sh -c 'wget -c https://ziglang.org/builds/zig-linux-x86_64-0.11.0-dev.3947+89396ff02.tar.xz -O - | tar -xJ --strip-components=1 -C /usr/local/bin' + sudo sh -c 'wget -c https://pkg.machengine.org/zig/zig-linux-x86_64-0.11.0-dev.3947+89396ff02.tar.xz -O - | tar -xJ --strip-components=1 -C /usr/local/bin' - name: build run: zig build