Skip to content

Commit

Permalink
fix: correct parameters for 7z
Browse files Browse the repository at this point in the history
  • Loading branch information
diogomatsubara committed Oct 28, 2024
1 parent 4382f78 commit 8674290
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,11 +163,11 @@ jobs:
- name: Zip standalone archives
shell: bash
run: |
zip_cmd="zip"
zip_cmd="zip -9"
if [[ ${{ contains(matrix.build.target, 'windows') }} == true ]]; then
zip_cmd="7z"
zip_cmd="7z -mx9 a"
fi
${zip_cmd} -9 zenohc-${{ inputs.version || '0.0.0' }}-${{ matrix.build.target }}-standalone.zip ./build/packages/*.zip
${zip_cmd} zenohc-${{ inputs.version || '0.0.0' }}-${{ matrix.build.target }}-standalone.zip ./build/packages/*.zip
- name: Zip deb/rpm archives
shell: bash
Expand Down

0 comments on commit 8674290

Please sign in to comment.