diff --git a/pipelines/Jenkinsfile b/pipelines/Jenkinsfile index af93a341bb485a53ca843121630ba9681e7e0b51..1a373cd2bca92b1e8935f9cd13b9f98fcb7ac8a2 100644 --- a/pipelines/Jenkinsfile +++ b/pipelines/Jenkinsfile @@ -11,7 +11,7 @@ node() { cleanWs() checkout scm commit_hash = sh(script: 'git rev-parse --short HEAD', returnStdout: true).trim() - env.commit_id = sh(script: "echo " + "form" + "_" + commit_hash + "_" + env.BUILD_NUMBER, returnStdout: true).trim() + env.commit_id = sh(script: "echo " + "nginx" + "_" + commit_hash + "_" + env.BUILD_NUMBER, returnStdout: true).trim() echo "${env.commit_id}" } }