We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7349920 commit c459c54Copy full SHA for c459c54
1 file changed
.github/workflows/release.yml
@@ -37,6 +37,13 @@ jobs:
37
- name: Add x86_64 GNU target
38
run: rustup target add x86_64-unknown-linux-gnu
39
40
+ # Install Zig
41
+ - name: Install Zig
42
+ run: |
43
+ wget https://ziglang.org/download/0.10.0/zig-linux-x86_64-0.10.0.tar.xz
44
+ tar -xf zig-linux-x86_64-0.10.0.tar.xz
45
+ sudo mv zig-linux-x86_64-0.10.0/zig /usr/local/bin/
46
+
47
# Install cargo-zigbuild
48
- name: Install cargo-zigbuild
49
run: cargo install cargo-zigbuild
0 commit comments