Combine image release with helm

Combine image release with helm release so that one happens after the other. This will help reduce manual work.
This commit is contained in:
Maidul Islam
2025-02-04 09:59:32 -05:00
parent 624c9ef8da
commit 1766a44dd0
4 changed files with 34 additions and 3 deletions

View File

@@ -0,0 +1,8 @@
cd "infisical-standalone-postgres"
helm dependency update
helm package .
for i in *.tgz; do
[ -f "$i" ] || break
cloudsmith push helm --republish infisical/helm-charts "$i"
done
cd ..