[10.07.20] Moved image build to build step rather than being in the Tag Repo step

This commit is contained in:
andyjk15 2020-07-10 12:13:03 +01:00
parent 319eb807e5
commit d8abb86904

View File

@ -73,10 +73,6 @@ try {
env.APPLICATION_VERSION,
env.APPLICATION_LABEL)
}
stage('Tag Repository') {
withDockerServer([uri: "${env.DOCKER_REPOSITORY_TCP}"]) {
docker.build("${env.APPLICATION_NAME}:${env.APPLICATION_VERSION}")
docker.build("${env.APPLICATION_NAME}:latest")
@ -88,6 +84,10 @@ try {
sh "docker push ${env.DOCKER_REPOSITORY}/${env.APPLICATION_NAME}:latest"
}
}
stage('Tag Repository') {
withCredentials(
[usernamePassword(
credentialsId: env.GITHUB_CREDENTIALS_ID,