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

fix: use whole path

This commit is contained in:
Noel Miller 2024-03-05 22:55:11 -06:00
parent 3490ea25a6
commit 1f13050cd3

View file

@ -2,9 +2,8 @@
set -ex
for entry in $@
do
export $entry
for entry in $@; do
export $entry
done
# Pull container
@ -20,6 +19,5 @@ make build/deploy.iso $@
mkdir ${OUTPUT_DIR} || true
# Copy resulting iso to github workspace and fix permissions
cp build/deploy.iso ${OUTPUT_DIR}
cp /build-container-installer/build/deploy.iso ${OUTPUT_DIR}
chmod -R ugo=rwX ${OUTPUT_DIR}
echo "::set-output name=iso::${OUTPUT_DIR}/deploy.iso"