Skip to content

Commit

Permalink
CI: Fix download link
Browse files Browse the repository at this point in the history
  • Loading branch information
andy5995 committed Mar 11, 2024
1 parent 4e955a4 commit d3c6411
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,10 @@ jobs:

- name: Install Zig
run: |
wget https://ziglang.org/builds/zig-linux-x86_64-master.tar.xz
tar -xf zig-linux-x86_64-master.tar.xz
sudo mv zig-linux-x86_64-master /usr/local/zig
ZIG_BASE="zig-linux-x86_64-0.12.0-dev.3193+4ba4f94c9"
wget "https://ziglang.org/builds/$ZIG_BASE.tar.xz"
tar -xf "$ZIG_BASE.tar.xz"
sudo mv "$ZIG_BASE" /usr/local/zig
echo "/usr/local/zig" >> $GITHUB_PATH
- name: Build
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
[![Linux CI](https://github.com/andy5995/zigdeck/actions/workflows/linux.yml/badge.svg)](https://github.com/andy5995/zigdeck/actions/workflows/linux.yml)

# zigdeck

A non-functioning library that shuffles a deck of cards and deals them out

0 comments on commit d3c6411

Please sign in to comment.