Update Jenkinsfile

This commit is contained in:
Oleksandr Butenko 2021-07-13 15:13:31 +03:00 committed by GitHub
parent 566e1d6b48
commit 7ac04ddcb9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

10
Jenkinsfile vendored
View file

@ -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'
}
}
}
}
}