diff --git a/Jenkinsfile b/Jenkinsfile index b08b625..2f4f777 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -17,7 +17,7 @@ pipeline { def tag = sh(returnStdout: true, script: "git tag --contains | head -1").trim() if(tag.contains("dev-")) echo "Running DEV deploy" - if(tag.contains("qa-")) + else if(tag.contains("qa-")) echo "Running QA deploy" else echo "Skipping deploment"