We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cbe40da commit b97039dCopy full SHA for b97039d
1 file changed
.github/workflows/release.yml
@@ -20,10 +20,9 @@ jobs:
20
21
- name: Install Zig 0.16.0 (Official Nightly)
22
run: |
23
- URL=$(curl -s https://ziglang.org/download/index.json | jq -r '.["0.16.0"]."x86_64-linux".tarball // .master."x86_64-linux".tarball')
24
- curl -LO "$URL"
25
- tar -xf zig-linux-x86_64-*.tar.xz --strip-components=1
26
- echo "$GITHUB_WORKSPACE" >> $GITHUB_PATH
+ URL=$(curl -s https://ziglang.org/download/index.json | jq -r '.["0.16.0"]."x86_64-linux".tarball')
+ curl -L "$URL" -o zig.tar.xz
+ tar -xf zig.tar.xz --strip-components=1
27
shell: bash
28
- name: Cross-Compile Binaries
29
0 commit comments