0
0
mirror of https://github.com/thegeeklab/wp-opentofu.git synced 2024-11-09 18:00:40 +00:00

update script to build images to show more info and confirm

This commit is contained in:
Jacob McCann 2018-10-11 14:22:15 -05:00
parent 1d2a5a2206
commit b90699f138
No known key found for this signature in database
GPG Key ID: B5A476DE32B9AE72

View File

@ -13,6 +13,18 @@ minor=$(echo $tag | awk -F. '{print $2}')
tf_ver=$(grep TERRAFORM_VERSION Dockerfile | head -n 1 | awk '{print $3}')
echo "Confirm building images for:"
echo " MAJOR: ${major}"
echo " MINOR: ${minor}"
echo " TF_VERSION: ${tf_ver}"
read -p "Proceed? [Y/N] " ans
if [[ "$ans" != "Y" && "$ans" != "y" ]]; then
echo "Cancelling"
exit 0
fi
docker build -t jmccann/drone-terraform:latest .
set -x
@ -24,4 +36,4 @@ docker push jmccann/drone-terraform:latest
docker push jmccann/drone-terraform:${major}
docker push jmccann/drone-terraform:${major}.${minor}
docker push jmccann/drone-terraform:${major}.${minor}-${tf_ver}
set +x
set +x