We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 040edfc commit 1152e35Copy full SHA for 1152e35
.github/workflows/commands.yml
@@ -27,9 +27,13 @@ jobs:
27
28
- name: zip
29
if: matrix.os != 'windows-latest'
30
- run: zip
+ run: |
31
+ touch file.txt
32
+ zip archive.zip file.txt
33
34
35
if: matrix.os == 'windows-latest'
- run: Compress-Archive
36
# shell: powershell
37
38
39
+ Compress-Archive -Path file.txt -Destination archive.zip
0 commit comments