Files
yml/scripts/helm-push.sh
DeveloperDurp 504045e17c Update 4 files
- /scripts/helm-push.sh
- /scripts/helm-login.sh
- /templates/helm.tpl.yml
- /pipelines/helm.yaml
2023-08-20 12:57:34 +00:00

7 lines
155 B
Bash

#!/usr/bin/env bash
#%%MULTILINE_YAML_START
#Helm Push
for chart in packages/*; do
helm push ./$chart oci://$CI_REGISTRY/$CI_PROJECT_PATH
done