pipelineUtils/vars/publishStep.groovy
2024-02-07 05:28:20 -08:00

13 lines
257 B
Groovy

#!/usr/bin/env groovy
void call(Map config = [:], Closure body = { }) {
Map defaults = [
stepName: 'Publish'
]
runConfig = defaults + config
stage(runConfig.stepName) {
printBanner(runConfig.stepName)
body()
}
}