use another update way

This commit is contained in:
kjeld Schouten-Lebbing 2021-05-06 15:17:11 +02:00
parent c8ce6424fc
commit 96ae90bd0b
No known key found for this signature in database
GPG Key ID: 4CDAD4A532BC1EDB
1 changed files with 14 additions and 6 deletions

View File

@ -54,9 +54,13 @@ jobs:
run: |
for train in stable incubator
do
cd master/${train}
helm dependency update
cd ..
for chart in master/${train}/*; do
if [ -d "${chart}" ]; then
cd ${chart}
helm dependency update
cd -
fi
done
done
- name: Add Chart release
run: |
@ -138,9 +142,13 @@ jobs:
run: |
for train in stable incubator
do
cd master/${train}
helm dependency update
cd ..
for chart in master/${train}/*; do
if [ -d "${chart}" ]; then
cd ${chart}
helm dependency update
cd -
fi
done
done
- name: Add Chart release
run: |