Skip to content

Commit

Permalink
Merge pull request #24 from lalithkota/develop-G2P-2355
Browse files Browse the repository at this point in the history
Github Action: Fixed non-chart directorys build
  • Loading branch information
lalithkota authored Jul 5, 2024
2 parents 996ba5c + c09b80e commit fd6662c
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 fd6662c

Please sign in to comment.