Files
yml/scripts/helm-package.sh
DeveloperDurp 0060b532f6 Update 4 files
- /scripts/version-number.sh
- /scripts/helm-package.sh
- /scripts/docker-build.sh
- /templates/build-container.tpl.yml
2023-04-09 20:08:02 +00:00

9 lines
182 B
Bash

#!/usr/bin/env bash
#%%MULTILINE_YAML_START
#Helm Package
for chart in charts/*; do
if [ -d "$chart" ]; then
helm package "$chart" -d ./packages --version ${VERSION}
fi
done