Skip to content

Commit a7564c2

Browse files
ci(github): fix zip in commands.yml
1 parent 761273e commit a7564c2

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/commands.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,9 @@ jobs:
2727

2828
- name: zip
2929
shell: bash
30-
run: zip --help
30+
run: |
31+
if [[ ${{ matrix.os == 'windows'* }} ]]; then
32+
Compress-Archive
33+
else
34+
zip
35+
fi

0 commit comments

Comments
 (0)