Skip to content

Commit

Permalink
Github Action: Fixed non-chart directorys build
Browse files Browse the repository at this point in the history
Signed-off-by: Lalith Kota <[email protected]>
  • Loading branch information
lalithkota committed Jul 5, 2024
1 parent 4c45548 commit 85bb1b1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/push_trigger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,9 @@ jobs:
echo "SKIP=TRUE" >> $GITHUB_ENV
else
for chartpath in charts/*/; do
helm dep up $chartpath
if [ -f ${chartpath}/Chart.yaml ]; then
helm dep up $chartpath
fi
done
RANCHER_CHARTS=()
while IFS= read -r chartpath; do
Expand Down

0 comments on commit 85bb1b1

Please sign in to comment.