From b329b2af003a18ec75f661a971128a8bc90cec61 Mon Sep 17 00:00:00 2001 From: Noel Miller Date: Thu, 7 Mar 2024 15:27:00 -0600 Subject: [PATCH] fix: missing underscores --- action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/action.yml b/action.yml index 5a9792b..64489e5 100644 --- a/action.yml +++ b/action.yml @@ -92,10 +92,10 @@ runs: then full_path="${iso_name}" else - fullpath="${{ github.workspace }}/${iso_name}" + full_path="${{ github.workspace }}/${iso_name}" fi - mv ${{ github.workspace }}/build/deploy.iso ${fullpath} || true - cd $(dirname ${fullpath}) + mv ${{ github.workspace }}/build/deploy.iso ${full_path} || true + cd $(dirname ${full_path}) iso_fn=$(basename ${iso_name}) sha256sum ${iso_fn} > ${iso_fn%.iso}-CHECKSUM echo "ISO=${full_path}" >> $GITHUB_OUTPUT