Skip to content

Commit 9ec0ce9

Browse files
committed
Please?
1 parent 519e549 commit 9ec0ce9

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

.github/workflows/nightly.yml

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,17 @@ jobs:
1313
steps:
1414
- name: Checkout
1515
uses: actions/checkout@v4
16-
#- name: Install libarchive
17-
# run: sudo apt update && sudo apt install libarchive-dev
18-
# - name: Install zig
19-
# run: wget https://ziglang.org/download/0.13.0/zig-linux-x86_64-0.13.0.tar.xz && tar -xvf zig-linux-x86_64-0.13.0.tar.xz
20-
# - name: Compile
21-
# run: ./zig-linux-x86_64-0.13.0/zig build -Doptimize=ReleaseFast -Dcpu=baseline
16+
- name: Install libarchive
17+
run: sudo apt update && sudo apt install libarchive-dev
18+
- name: Install zig
19+
run: wget https://ziglang.org/download/0.13.0/zig-linux-x86_64-0.13.0.tar.xz && tar -xvf zig-linux-x86_64-0.13.0.tar.xz
20+
- name: Compile
21+
run: ./zig-linux-x86_64-0.13.0/zig build -Doptimize=ReleaseFast -Dcpu=baseline
2222
- name: Release
2323
uses: softprops/action-gh-release@v2
24-
if: startsWith(github.ref, 'refs/tags/')
2524
with:
26-
files: README.md
25+
tag_name: nightly-${{ github.sha }}
26+
name: Nightly Build ${GITHUB_SHA::7}
27+
files: |
28+
./zig-out/bin/zigdemu
29+
./zig-out/bin/zigd

0 commit comments

Comments
 (0)