Update Jenkinsfile

This commit is contained in:
Oleksandr Butenko 2021-07-13 16:34:19 +03:00 committed by GitHub
parent 5fea384d68
commit 1f8cc6b9da
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

6
Jenkinsfile vendored
View file

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