From c0160c42051a1637d67b93769cbec686b33bfd59 Mon Sep 17 00:00:00 2001 From: Eric Kilmer Date: Mon, 2 Mar 2026 09:21:54 -0500 Subject: [PATCH] ci: Don't archive when using upload-artifact GHA (#402) Prevents rpm and deb packages from being zipped --- .github/workflows/main.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 44774de..387c6d3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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