Skip to content
This repository has been archived by the owner on May 16, 2023. It is now read-only.

Commit

Permalink
[meta] Add dependency download to release script (#240)
Browse files Browse the repository at this point in the history
[meta] Add dependency download to release script
  • Loading branch information
Crazybus committed Aug 1, 2019
2 parents f588001 + 932f62b commit a386536
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions helpers/release.py
Original file line number Diff line number Diff line change
Expand Up @@ -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])

Expand Down

0 comments on commit a386536

Please sign in to comment.