patch upload script

This commit is contained in:
Maidul Islam
2023-02-19 00:00:58 -05:00
parent e5ba8eb281
commit 1c61ffbd36

4
helm-charts/upload-to-cloudsmith.sh Normal file → Executable file
View File

@@ -2,10 +2,10 @@
for d in */ ; do
cd "$d"
helm dependency update
helm package $d
helm package .
for i in *.tgz; do
[ -f "$i" ] || break
cloudsmith push helm --republish infisical/helm-charts $i
cloudsmith push helm --republish infisical/helm-charts "$i"
done
cd ..
done