1
0
Fork 0
mirror of https://github.com/JasonN3/build-container-installer.git synced 2025-12-25 10:57:55 +01:00

fix: missing underscores

This commit is contained in:
Noel Miller 2024-03-07 15:27:00 -06:00
parent b7d07f098d
commit b329b2af00

View file

@ -92,10 +92,10 @@ runs:
then then
full_path="${iso_name}" full_path="${iso_name}"
else else
fullpath="${{ github.workspace }}/${iso_name}" full_path="${{ github.workspace }}/${iso_name}"
fi fi
mv ${{ github.workspace }}/build/deploy.iso ${fullpath} || true mv ${{ github.workspace }}/build/deploy.iso ${full_path} || true
cd $(dirname ${fullpath}) cd $(dirname ${full_path})
iso_fn=$(basename ${iso_name}) iso_fn=$(basename ${iso_name})
sha256sum ${iso_fn} > ${iso_fn%.iso}-CHECKSUM sha256sum ${iso_fn} > ${iso_fn%.iso}-CHECKSUM
echo "ISO=${full_path}" >> $GITHUB_OUTPUT echo "ISO=${full_path}" >> $GITHUB_OUTPUT