mirror of
https://github.com/sartography/spiff-arena.git
synced 2025-01-27 09:45:12 +00:00
ci: always notify, not just if we get to push stage (#1325)
Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
467d33e4a2
commit
7f18fb7cee
22
Jenkinsfile
vendored
22
Jenkinsfile
vendored
@ -82,21 +82,19 @@ pipeline {
|
||||
image.push(env.DOCKER_TAG)
|
||||
}
|
||||
} }
|
||||
post {
|
||||
always { script {
|
||||
if (params.DISCORD_WEBHOOK_CRED) {
|
||||
def result = currentBuild.result.toLowerCase() ?: 'unknown'
|
||||
discordNotify(
|
||||
header: "SpiffWorkflow Docker image build ${result}!",
|
||||
cred: params.DISCORD_WEBHOOK_CRED,
|
||||
)
|
||||
}
|
||||
} }
|
||||
}
|
||||
}
|
||||
} // stages
|
||||
post {
|
||||
always { sh 'docker image prune -f' }
|
||||
always { script {
|
||||
sh 'docker image prune -f' }
|
||||
if (params.DISCORD_WEBHOOK_CRED) {
|
||||
def result = currentBuild.result.toLowerCase() ?: 'unknown'
|
||||
discordNotify(
|
||||
header: "SpiffWorkflow Docker image build ${result}!",
|
||||
cred: params.DISCORD_WEBHOOK_CRED,
|
||||
)
|
||||
}
|
||||
} }
|
||||
cleanup { cleanWs() }
|
||||
} // post
|
||||
} // pipeline
|
||||
|
Loading…
x
Reference in New Issue
Block a user