diff --git a/Jenkinsfile b/Jenkinsfile index e5bb109e8..8c47dc181 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -13,6 +13,11 @@ pipeline { sh 'echo ${GIT_COMMIT}' } } + stage('Jira2') { + steps { + jiraAddComment idOrKey: "${TaskID}", comment: 'build successfull', site: 'butenko992' + } + } stage('Build') { steps { echo 'Running build automation' @@ -63,11 +68,6 @@ pipeline { } } } - stage('Jira2') { - steps { - jiraAddComment idOrKey: "${TaskID}", comment: 'build successfull', site: 'butenko992' - } - } } } }