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

add iso_path

This commit is contained in:
Jason N. 2024-03-07 17:09:18 -05:00
parent c1bf1fda5a
commit 38579860d8
2 changed files with 10 additions and 6 deletions

View file

@ -53,8 +53,11 @@ inputs:
outputs:
iso_name:
value: ${{ steps.rename_iso.outputs.ISO }}
description: The location of the .iso object
value: ${{ steps.rename_iso.outputs.iso_name }}
description: The name of the resulting .iso
iso_path:
value: ${{ steps.rename_iso.outputs.iso_path }}
description: The name and path of the resulting .iso
runs:
using: composite
@ -98,4 +101,5 @@ runs:
cd $(dirname ${full_path})
iso_fn=$(basename ${iso_name})
sha256sum ${iso_fn} > ${iso_fn%.iso}-CHECKSUM
echo "ISO=${full_path}" >> $GITHUB_OUTPUT
echo "iso_path=${full_path}" >> $GITHUB_OUTPUT
echo "iso_name=${iso_fn}" >> $GITHUB_OUTPUT