7 lines
162 B
Groovy
7 lines
162 B
Groovy
def call(String chartPath) {
|
|
container('helm') {
|
|
sh 'helm package ${chartPath}'
|
|
echo "Helm chart packaged successfully: ${chartPath}"
|
|
}
|
|
}
|