try scripting CR to go over all the charts

This commit is contained in:
kjeld Schouten-Lebbing 2021-09-07 14:04:24 +02:00
parent 648e63cc59
commit 00abbe89b0
No known key found for this signature in database
GPG Key ID: 4CDAD4A532BC1EDB
1 changed files with 9 additions and 1 deletions

View File

@ -75,7 +75,15 @@ jobs:
- name: Chart Releaser Package
run: |
cr package --config ".github/cr.yaml"
for train in stable incubator
do
for chart in charts/${train}/*; do
if [ -d "${chart}" ]; then
cr package ${chart} --config ".github/cr.yaml"
fi
done
done
- name: Chart Releaser Upload
run: |