Skip to content

Commit

Permalink
fix condition
Browse files Browse the repository at this point in the history
  • Loading branch information
archiewood committed Jul 29, 2024
1 parent 80b808d commit c3b0b8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:

- name: Zip files
run: |
if [ "${{ runner.os }}" == "Windows" ]; then
if [[ "${{ runner.os }}" == "Windows" ]]; then
powershell.exe -Command "Compress-Archive -Path . -DestinationPath evidence-${{ matrix.os }}-${{ matrix.arch }}-node${{ matrix.node }}.zip -Force"
else
zip -r evidence-${{ matrix.os }}-${{ matrix.arch }}-node${{ matrix.node }}.zip . -x "*.git*"
Expand Down

0 comments on commit c3b0b8d

Please sign in to comment.