mirror of
https://gitlab.durp.info/durfy/ci-includes/yml.git
synced 2026-05-08 00:11:24 -05:00
9 lines
185 B
Bash
9 lines
185 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 ${GITVERSION}
|
||
|
|
fi
|
||
|
|
done
|