Skip to content

Commit 0e6bb6b

Browse files
humanjesseclaude
andcommitted
fix: use direct Zig download instead of setup-zig action
The goto-bus-stop/setup-zig action was experiencing retries. Download Zig directly from ziglang.org for more reliability. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 6147d1d commit 0e6bb6b

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,10 @@ jobs:
1313
uses: actions/checkout@v4
1414

1515
- name: Setup Zig
16-
uses: goto-bus-stop/setup-zig@v2
17-
with:
18-
version: 0.15.2
16+
run: |
17+
wget -q https://ziglang.org/download/0.15.2/zig-linux-x86_64-0.15.2.tar.xz
18+
tar -xf zig-linux-x86_64-0.15.2.tar.xz
19+
echo "$PWD/zig-linux-x86_64-0.15.2" >> $GITHUB_PATH
1920
2021
- name: Build Linux x86_64
2122
run: |

0 commit comments

Comments
 (0)