feature/25899 #1

Merged
roberto.cirillo merged 2 commits from feature/25899 into main 2023-10-19 16:54:12 +02:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 2a0ad17388 - Show all commits

View File

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