Files
yml/scripts/helm-push.sh
DeveloperDurp 01bf91aeee Update 2 files
- /scripts/helm-push.sh
- /templates/helm.tpl.yml
2023-08-20 13:47:30 +00:00

9 lines
203 B
Bash

#!/usr/bin/env bash
#%%MULTILINE_YAML_START
#Helm Push
helm plugin install https://github.com/chartmuseum/helm-push
for chart in packages/*; do
helm cm-push ./$chart ${CI_PROJECT_NAME}
done