From 399ffa1c54c1301c8e80eabe3a48a18d3f6c6282 Mon Sep 17 00:00:00 2001 From: konsthol Date: Wed, 28 May 2025 12:54:42 +0300 Subject: [PATCH] Update vars/jenkinsPipelineSkeleton.groovy --- vars/jenkinsPipelineSkeleton.groovy | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vars/jenkinsPipelineSkeleton.groovy b/vars/jenkinsPipelineSkeleton.groovy index 357c4d4..41f617b 100644 --- a/vars/jenkinsPipelineSkeleton.groovy +++ b/vars/jenkinsPipelineSkeleton.groovy @@ -37,9 +37,11 @@ def call(String projectName, Map config) { post { success { echo "Build for '${projectName}' was successful!" + sh 'curl -s -H "Cache: no" -d "${projectName} Build Successful" https://ntfy.konsthol.eu/General' } failure { echo "Build for '${projectName}' failed!" + sh 'curl -s -H "Cache: no" -d "${projectName} Build Failed" https://ntfy.konsthol.eu/General' } } }