From d5aac2953c700db41ec2441ea1912f95407ee222 Mon Sep 17 00:00:00 2001 From: Thomas Roehl Date: Sun, 6 Mar 2022 16:16:43 +0100 Subject: [PATCH] Properly match rpms --- .github/workflows/Release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/Release.yml b/.github/workflows/Release.yml index ca40ae4..26ba0dd 100644 --- a/.github/workflows/Release.yml +++ b/.github/workflows/Release.yml @@ -148,10 +148,10 @@ jobs: - name: Set RPM variables id: files run: | - ALMA_85_RPM=$(ls *alma85*.rpm) - ALMA_85_SRPM=$(ls *alma85*.srpm) - UBI_8_RPM=$(ls *el8*.rpm) - UBI_8_SRPM=$(ls *el8*.srpm) + ALMA_85_RPM=$(ls *alma85*.rpm | grep -v src) + ALMA_85_SRPM=$(ls *alma85*.src.rpm) + UBI_8_RPM=$(ls *el8*.rpm | grep -v src) + UBI_8_SRPM=$(ls *el8*.src.rpm) echo "ALMA_85_RPM::${ALMA_85_RPM}" echo "ALMA_85_SRPM::${ALMA_85_SRPM}" echo "UBI_8_RPM::${UBI_8_RPM}"