Skip to content

Commit

Permalink
fix: remove zip extension from uploaded files
Browse files Browse the repository at this point in the history
  • Loading branch information
diogomatsubara committed Oct 25, 2024
1 parent 4912992 commit faf68c5
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 @@ -157,21 +157,21 @@ jobs:
- name: Upload library archive
uses: actions/upload-artifact@v4
with:
name: zenohc-${{ inputs.version || '0.0.0' }}-${{ matrix.build.target }}-standalone.zip
name: zenohc-${{ inputs.version || '0.0.0' }}-${{ matrix.build.target }}-standalone
path: ./build/packages/*.zip

- name: Upload DEB archive
if: ${{ contains(matrix.build.target, 'linux') }}
uses: actions/upload-artifact@v4
with:
name: libzenohc-${{ inputs.version || '0.0.0' }}-${{ matrix.build.target }}-debian.zip
name: libzenohc-${{ inputs.version || '0.0.0' }}-${{ matrix.build.target }}-debian
path: ./build/packages/*.deb

- name: Upload RPM archive
if: ${{ contains(matrix.build.target, 'linux') }}
uses: actions/upload-artifact@v4
with:
name: libzenohc-${{ inputs.version || '0.0.0' }}-${{ matrix.build.target }}-rpm.zip
name: libzenohc-${{ inputs.version || '0.0.0' }}-${{ matrix.build.target }}-rpm
path: ./build/packages/*.rpm

debian:
Expand Down

0 comments on commit faf68c5

Please sign in to comment.