mirror of
https://gitlab.durp.info/durfy/ci-includes/yml.git
synced 2026-05-08 08:21:20 -05:00
9 lines
203 B
Bash
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
|