Fix using NOTIFY_TOKEN env var

This commit is contained in:
Reza Behzadan 2024-03-31 15:36:14 +03:30
parent 61c39daf55
commit bb35916fb2
2 changed files with 9 additions and 3 deletions

10
Jenkinsfile vendored
View File

@ -41,12 +41,18 @@ pipeline {
success {
echo 'Build succeeded!'
notifyEvents title: 'jenkins.home.behzadan.ir/$JOB_NAME/$BUILD_ID', message: 'Build succeeded!', priority: 'NORMAL', token: '$NOTIFY_TOKEN'
notifyEvents title: 'jenkins.home.behzadan.ir/$JOB_NAME/$BUILD_ID',
message: 'Build succeeded!',
priority: 'NORMAL',
token: "${env.NOTIFY_TOKEN}"
}
failure {
echo 'Build failed!'
notifyEvents title: 'jenkins.home.behzadan.ir/$JOB_NAME/$BUILD_ID', message: 'Build failed!', priority: 'NORMAL', token: '$NOTIFY_TOKEN'
notifyEvents title: 'jenkins.home.behzadan.ir/$JOB_NAME/$BUILD_ID',
message: 'Build failed!',
priority: 'NORMAL',
token: "${env.NOTIFY_TOKEN}"
}
}

View File

@ -1 +1 @@
1.0.7
1.0.8