Skip to content

Commit 6660836

Browse files
committed
GitHub Actions: Fix target
1 parent 1626ee2 commit 6660836

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
with:
2424
version: master
2525
- name: Compile executables
26-
run: zig build -Dtarget=${{ matrix.os }}-${{ matrix.cpu }} -Doptimize=ReleaseFast
26+
run: zig build -Dtarget=${{ matrix.cpu }}-${{ matrix.os }} -Doptimize=ReleaseFast
2727
- name: Upload binary (existing release)
2828
if: ${{ github.event_name == 'release'}}
2929
run: gh release upload ${{ github.ref }} zig-out/bin/ziglint#${{ matrix.os }}-${{ matrix.cpu }}

0 commit comments

Comments
 (0)