12 lines
192 B
Groovy
12 lines
192 B
Groovy
#!/usr/bin/env groovy
|
|
|
|
void call(Map config = [:]) {
|
|
Map defaults = [
|
|
artifacts: []
|
|
]
|
|
|
|
Map runConfig = defaults + config
|
|
|
|
echo "Will tag result as: ${runConfig.tag}"
|
|
}
|