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:
parent
3490ea25a6
commit
1f13050cd3
1 changed files with 3 additions and 5 deletions
|
|
@ -2,9 +2,8 @@
|
||||||
|
|
||||||
set -ex
|
set -ex
|
||||||
|
|
||||||
for entry in $@
|
for entry in $@; do
|
||||||
do
|
export $entry
|
||||||
export $entry
|
|
||||||
done
|
done
|
||||||
|
|
||||||
# Pull container
|
# Pull container
|
||||||
|
|
@ -20,6 +19,5 @@ make build/deploy.iso $@
|
||||||
mkdir ${OUTPUT_DIR} || true
|
mkdir ${OUTPUT_DIR} || true
|
||||||
|
|
||||||
# Copy resulting iso to github workspace and fix permissions
|
# 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}
|
chmod -R ugo=rwX ${OUTPUT_DIR}
|
||||||
echo "::set-output name=iso::${OUTPUT_DIR}/deploy.iso"
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue