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