From 7ac04ddcb94bc7b576fdd0f6e0a06e79d159d613 Mon Sep 17 00:00:00 2001 From: Oleksandr Butenko <58562385+sprientera992@users.noreply.github.com> Date: Tue, 13 Jul 2021 15:13:31 +0300 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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' - } - } } } }