Skip to content

Commit

Permalink
Fix GH action release
Browse files Browse the repository at this point in the history
  • Loading branch information
guilhermef committed Oct 18, 2022
1 parent 21d64c1 commit 9fd5d3b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/chart-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,12 @@ jobs:
with:
version: v3.10.0

- name: Add repositories
run: |
for dir in $(ls -d charts/*/); do
helm dependency list $dir 2> /dev/null | tail +2 | head -n -1 | awk '{ print "helm repo add " $1 " " $3 }' | while read cmd; do $cmd; done
done
- name: Run chart-releaser
uses: helm/[email protected]
env:
Expand Down
1 change: 1 addition & 0 deletions charts/thumbor/templates/NOTES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Thumbor offcial Helm chart

0 comments on commit 9fd5d3b

Please sign in to comment.