Merge pull request 'feature/25899' (#1) from feature/25899 into main

Reviewed-on: #1
This commit is contained in:
Roberto Cirillo 2023-10-19 16:54:12 +02:00
commit e7eaaeb9f5
1 changed files with 15 additions and 1 deletions

View File

@ -41,4 +41,18 @@ pipeline {
}
}
}
}
post {
always {
script {
withCredentials([string(credentialsId: 'is-registry-devnext-hook', variable: 'REGISTRY_DEVNEXT')]) {
sh "curl -v -X POST $REGISTRY_DEVNEXT"
}
}
script {
withCredentials([string(credentialsId: 'is-registry-devsec-hook', variable: 'REGISTRY_DEVSEC')]) {
sh "curl -v -X POST $REGISTRY_DEVSEC"
}
}
}
}
}