You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
docker-infisical/helm-charts/upload-to-cloudsmith.sh

17 lines
450 B

## Loop through each helm chart directoy and build each into helm package
for d in */ ; do
cd "$d"
helm dependency update
helm package .
for i in *.tgz; do
[ -f "$i" ] || break
cloudsmith push helm --republish infisical/helm-charts "$i"
done
cd ..
done
# ## Upload each packaged helm chart
# for i in *.tgz; do
# [ -f "$i" ] || break
# cloudsmith push helm --republish infisical/helm-charts $i
# done