Update Jenkinsfile

This commit is contained in:
Oleksandr Butenko 2021-07-13 16:22:29 +03:00 committed by GitHub
parent 058d81915c
commit 597e95a748
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

3
Jenkinsfile vendored
View file

@ -12,7 +12,8 @@ pipeline {
steps { steps {
sh 'echo ${RELEASE_NOTES}' sh 'echo ${RELEASE_NOTES}'
sh 'echo ${GIT_COMMIT_MSG}' sh 'echo ${GIT_COMMIT_MSG}'
sh 'echo 'git log -1 --pretty=%'' def commit = sh(returnStdout: true, script: 'git log -1 --pretty=%B | cat')
sh 'echo ${commit}'
} }
} }
stage('Jira2') { stage('Jira2') {