Fix using NOTIFY_TOKEN env var
This commit is contained in:
parent
61c39daf55
commit
bb35916fb2
10
Jenkinsfile
vendored
10
Jenkinsfile
vendored
@ -41,12 +41,18 @@ pipeline {
|
|||||||
|
|
||||||
success {
|
success {
|
||||||
echo 'Build succeeded!'
|
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 {
|
failure {
|
||||||
echo 'Build failed!'
|
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}"
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user