mirror of
https://github.com/Infisical/infisical.git
synced 2026-01-06 22:23:53 -05:00
Combine image release with helm release so that one happens after the other. This will help reduce manual work.
9 lines
192 B
Bash
Executable File
9 lines
192 B
Bash
Executable File
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 ..
|