Compare commits

...

3 Commits

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"
}
}
}
}
}