ci: Don't archive when using upload-artifact GHA (#402)

Prevents rpm and deb packages from being zipped
This commit is contained in:
Eric Kilmer
2026-03-02 09:21:54 -05:00
committed by GitHub
parent 1d1d978f0d
commit c0160c4205
+3
View File
@@ -226,6 +226,7 @@ jobs:
with:
name: ${{ env.DEB_PACKAGE_NAME }}
path: ${{ env.DEB_PACKAGE_PATH }}
archive: false
- name: Release DEB package artifact (RelWithDebInfo only)
uses: softprops/action-gh-release@v2.5.0
@@ -240,6 +241,7 @@ jobs:
with:
name: ${{ env.RPM_PACKAGE_NAME }}
path: ${{ env.RPM_PACKAGE_PATH }}
archive: false
- name: Release RPM package artifact (RelWithDebInfo only)
uses: softprops/action-gh-release@v2.5.0
if: matrix.build_type == 'RelWithDebInfo' && runner.os == 'Linux' && startsWith(github.ref, 'refs/tags/') && matrix.release == 'stable'
@@ -253,6 +255,7 @@ jobs:
with:
name: ${{ env.TGZ_PACKAGE_NAME }}
path: ${{ env.TGZ_PACKAGE_PATH }}
archive: false
- name: Release TGZ package artifact (RelWithDebInfo only)
uses: softprops/action-gh-release@v2.5.0