This commit is contained in:
2023-04-09 19:39:37 +00:00
parent 3b6644120c
commit 1229f9d86a
5 changed files with 37 additions and 3 deletions

9
scripts/helm-package.sh Normal file
View File

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