ci: sent Discord notifications for all builds
Just for more clarity on build status. No more guessing. Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
08f1cd8e50
commit
99911cba6f
|
@ -83,10 +83,11 @@ pipeline {
|
||||||
}
|
}
|
||||||
} }
|
} }
|
||||||
post {
|
post {
|
||||||
success { script {
|
always { script {
|
||||||
if (params.DISCORD_WEBHOOK_CRED) {
|
if (params.DISCORD_WEBHOOK_CRED) {
|
||||||
|
def result = currentBuild.result.toLowerCase() ?: 'unknown'
|
||||||
discordNotify(
|
discordNotify(
|
||||||
header: 'SpiffWorkflow Docker image published!',
|
header: "SpiffWorkflow Docker image build ${result}!",
|
||||||
cred: params.DISCORD_WEBHOOK_CRED,
|
cred: params.DISCORD_WEBHOOK_CRED,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue