Skip to content

Commit 81efd19

Browse files
committed
fix(ci): use correct zig url
Signed-off-by: Roberto Scolaro <[email protected]>
1 parent 1969065 commit 81efd19

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@ jobs:
4747
rpm \
4848
wget \
4949
xz-utils && \
50-
curl -LO https://ziglang.org/builds/zig-linux-"$(uname -m)"-"${ZIG_VERSION}".tar.xz && \
51-
tar -xaf zig-linux-"$(uname -m)"-"${ZIG_VERSION}".tar.xz && \
52-
rm -v zig-linux-"$(uname -m)"-"${ZIG_VERSION}".tar.xz && \
53-
cd zig-linux-"$(uname -m)"-"${ZIG_VERSION}" && \
50+
curl -LO "https://ziglang.org/download/${ZIG_VERSION}/zig-$(uname -m)-linux-${ZIG_VERSION}.tar.xz" && \
51+
tar -xaf "zig-$(uname -m)-linux-${ZIG_VERSION}.tar.xz" && \
52+
rm -v "zig-$(uname -m)-linux-${ZIG_VERSION}.tar.xz" && \
53+
cd zig-* && \
5454
cp -v zig /usr/bin && \
5555
find lib -exec cp --parents {} /usr/ \; && \
5656
cd .. && \

0 commit comments

Comments
 (0)