From 1f13050cd32aab0479f6805d295e41ef6c567e22 Mon Sep 17 00:00:00 2001 From: Noel Miller Date: Tue, 5 Mar 2024 22:55:11 -0600 Subject: [PATCH] fix: use whole path --- entrypoint.sh | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index 1162d6c..c590444 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -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"