Skip to content

Commit

Permalink
fix: upload deb/rpm archives for linux builds
Browse files Browse the repository at this point in the history
  • Loading branch information
diogomatsubara committed Oct 25, 2024
1 parent 3a182e5 commit cbea297
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -161,14 +161,14 @@ jobs:
path: ./build/packages/*.zip

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

- name: Upload RPM archive
if: ${{ matrix.build.os == 'ubuntu-20.04' }}
if: ${{ contains(matrix.build.target, 'linux') }}
uses: actions/upload-artifact@v4
with:
name: libzenohc-${{ inputs.version || '0.0.0' }}-${{ matrix.build.target }}-rpm.zip
Expand Down

0 comments on commit cbea297

Please sign in to comment.