diff --git a/Jenkinsfile b/Jenkinsfile index 16cf8d2..22ed9a8 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -21,6 +21,14 @@ pipeline { } } } + + stage("Tage image as latest") { + steps { + script { + sh 'docker tag docker-registry1.in.thelinuxpro.net:5000/tlp/tlp_jekyll:0.0.1 docker-registry1.in.thelinuxpro.net:5000/tlp/tlp_jekyll:latest --push' + } + } + } } }