ci-includes-yml/scripts/helm-package.sh

10 lines
216 B
Bash
Raw Normal View History

2023-04-09 19:39:37 +00:00
#!/usr/bin/env bash
#%%MULTILINE_YAML_START
#Helm Package
for chart in charts/*; do
if [ -d "$chart" ]; then
2023-06-24 18:18:10 +00:00
helm dependency update $chart
helm package "$chart" -d ./packages --version ${VERSION}
2023-04-09 19:39:37 +00:00
fi
done