1
0
Fork 0
mirror of https://github.com/JasonN3/build-container-installer.git synced 2026-02-09 14:15:17 +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,8 +2,7 @@
set -ex
for entry in $@
do
for entry in $@; do
export $entry
done
@ -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"