mirror of
https://github.com/JasonN3/build-container-installer.git
synced 2025-12-25 10:57:55 +01:00
18 lines
No EOL
230 B
Bash
18 lines
No EOL
230 B
Bash
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
for entry in $@
|
|
do
|
|
export $entry
|
|
done
|
|
|
|
make container/${IMAGE_NAME}-${IMAGE_TAG} $@
|
|
|
|
make boot.iso $@
|
|
|
|
make build/deploy.iso $@
|
|
|
|
mkdir /github/workspace/build || true
|
|
|
|
cp build/*.iso /github/workspace/build |