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 0cc10ed commit 024281cCopy full SHA for 024281c
.github/workflows/release-stark-cli.yml
@@ -87,7 +87,11 @@ jobs:
87
88
# Create archive
89
tar -czf ${{ matrix.artifact_name }}.tar.gz -C dist .
90
- zip -r ${{ matrix.artifact_name }}.zip dist/
+ if [ "$RUNNER_OS" = "Windows" ]; then
91
+ powershell Compress-Archive -Path dist\* -DestinationPath ${{ matrix.artifact_name }}.zip
92
+ else
93
+ zip -r ${{ matrix.artifact_name }}.zip dist/
94
+ fi
95
96
ls -la *.tar.gz *.zip
97
shell: bash
0 commit comments