Skip to content

Commit

Permalink
requested changes; skip helm for *_starter directories
Browse files Browse the repository at this point in the history
  • Loading branch information
dvviktordelev committed Jun 24, 2024
1 parent ebe98af commit e27af9a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/release-source.yml
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,11 @@ jobs:
sed -i "s/.*repository_tag.*/ repository_tag: v$RELEASE_VERSION/" "$dir"/values/values.yaml; \
fi; \
fi; \
helm dep build "$dir"; \
helm dep update "$dir";
# skip helm dep update and helm dep build for directories with '_starter' in the name
if [[ "$dir" != *"_starter"* ]]; then
helm dep build "$dir"
helm dep update "$dir"
fi
done
# commit and push changes
git add .
Expand Down

0 comments on commit e27af9a

Please sign in to comment.