From 1b27febdd8f5d185f56e1f59179aabe4485d32fc Mon Sep 17 00:00:00 2001 From: Jason Ish Date: Thu, 27 Feb 2025 10:02:23 -0600 Subject: [PATCH] github-ci: re-enable RPM builds The RPM has been updated to handle the conversion of suricatasc and suricatactl to Rust. Also fixes the "if" expression to prevent one job running both upload sections. --- .github/workflows/builds.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml index fe3c454728..9c96bb0123 100644 --- a/.github/workflows/builds.yml +++ b/.github/workflows/builds.yml @@ -401,7 +401,7 @@ jobs: - almalinux:9 - fedora:40 env: - skip: true + skip: false steps: - name: Cache cargo registry uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 @@ -456,13 +456,13 @@ jobs: # We need a step for each RPM upload as we can't use the # container name directly in an artifact, as artifacts can't # have ':' in the name. - - if: matrix.container == 'fedora:40' && ${{ env.skip != 'true' }} + - if: ${{ matrix.container == 'fedora:40' && env.skip != 'true' }} uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 name: Uploading RPMs with: name: rpms-fedora-40 path: suricata-rpms/devel/rpms - - if: matrix.container == 'almalinux:9' && ${{ env.skip != 'true' }} + - if: ${{ matrix.container == 'almalinux:9' && env.skip != 'true' }} uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 name: Uploading RPMs with: