mirror of
https://github.com/Infisical/infisical.git
synced 2026-01-06 22:23:53 -05:00
8 lines
177 B
Bash
Executable File
8 lines
177 B
Bash
Executable File
cd infisical-gateway
|
|
helm dependency update
|
|
helm package .
|
|
for i in *.tgz; do
|
|
[ -f "$i" ] || break
|
|
cloudsmith push helm --republish infisical/helm-charts "$i"
|
|
done
|
|
cd .. |