From f6caac2b35d14f82077507271d436be453176cb2 Mon Sep 17 00:00:00 2001 From: Matt Hink Date: Wed, 30 Apr 2025 06:45:29 -0700 Subject: [PATCH] Fix typo in rpm github action --- .github/actions/rpm/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/rpm/action.yml b/.github/actions/rpm/action.yml index 6132bfdc..30167f40 100644 --- a/.github/actions/rpm/action.yml +++ b/.github/actions/rpm/action.yml @@ -59,7 +59,7 @@ runs: GENERIC_RELEASE=$(rpm -q --qf "%{RELEASE}\n" --specfile warewulf.spec | cut -d. -f1 | head -1) RPM=warewulf-${VERSION}-${GENERIC_RELEASE}.${{ inputs.dist }}.${{ inputs.arch }}.rpm SRPM=warewulf-${VERSION}-${GENERIC_RELEASE}.${{ inputs.dist }}.src.rpm - DRACUT=wareful-dracut-${VERSION}-${GENERIC_RELEASE}.${{ inputs.dist }}.noarch.rpm + DRACUT=warewulf-dracut-${VERSION}-${GENERIC_RELEASE}.${{ inputs.dist }}.noarch.rpm echo "RPM=${RPM}" >> $GITHUB_ENV echo "SRPM=${SRPM}" >> $GITHUB_ENV echo "DRACUT=${DRACUT}" >> $GITHUB_ENV