Skip to content

Commit fae34e8

Browse files
committed
fixed image name injection
1 parent 2aec270 commit fae34e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Jenkinsfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
node('master'){
22
def scmVars = checkout scm
33
def imageTag = env.TAG_NAME
4-
if(imageTag != null){
4+
if(imageTag == null){
55
imageTag = "latest"
66
}
77
withDockerRegistry(credentialsId: 'dc94d276-bbcb-490a-8586-8322dbf729dd') {

0 commit comments

Comments
 (0)