diff --git a/helpers/release.py b/helpers/release.py index 811bde945..145995ff1 100644 --- a/helpers/release.py +++ b/helpers/release.py @@ -30,6 +30,9 @@ def run(cmd): for filepath in glob.iglob('*/Chart.yaml'): chart = os.path.split(os.path.dirname(filepath))[-1] + # Download dependencies + run(['helm', 'dependency', 'update', chart]) + # Package up the chart run(['helm', 'package', chart, '--destination', chart])