Merge pull request #656 from github/UpdateDeploy

Fixing deploy latest
This commit is contained in:
Lukas Gravley 2020-09-01 11:25:07 -05:00 committed by GitHub
commit b25513b512
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -369,6 +369,10 @@ BuildImage() {
info "Successfull [tag] Version:[${IMAGE_VERSION}] of additonal image!"
fi
########################################################
# Need to see if we need to tag a major update as well #
########################################################
if [ ${UPDATE_MAJOR_TAG} -eq 1 ]; then
###################
# Build the image #
###################
@ -389,6 +393,7 @@ BuildImage() {
# SUCCESS
info "Successfull [tag] Version:[${MAJOR_TAG}] of additonal image!"
fi
fi
}
################################################################################
#### Function UploadImage ######################################################