From 566e1d6b48e7c64f6f07b92fb9f1dd185366fde8 Mon Sep 17 00:00:00 2001 From: Oleksandr Butenko <58562385+sprientera992@users.noreply.github.com> Date: Tue, 13 Jul 2021 14:29:33 +0300 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 689c24b3c..e5bb109e8 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -7,17 +7,12 @@ pipeline { } agent any stages { - stage('Jira2') { + stage('get hash') { steps { - jiraAddComment idOrKey: "${TaskID}", comment: 'build successfull', site: 'butenko992' + sh 'echo ${RELEASE_NOTES}' + sh 'echo ${GIT_COMMIT}' } } -// stage('get hash') { -// steps { -// sh 'echo ${RELEASE_NOTES}' -// sh 'echo ${GIT_COMMIT}' -// } -// } stage('Build') { steps { echo 'Running build automation' @@ -68,6 +63,11 @@ pipeline { } } } + stage('Jira2') { + steps { + jiraAddComment idOrKey: "${TaskID}", comment: 'build successfull', site: 'butenko992' + } + } } } }