8000 Fix Issue in Helm Release Process by J12934 · Pull Request #753 · secureCodeBox/secureCodeBox · GitHub
[go: up one dir, main page]

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/helm-charts-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
RELEASE_VERSION="${RELEASE_VERSION//v}"
# Publish all helm charts in all folders containing a `Chart.yaml` file
# https://github.com/koalaman/shellcheck/wiki/SC2044
find . -type f -name Chart.yaml -print0 | while IFS= read -r -d '' chart; do
find . -type f -name Chart.yaml -not -path "./.templates/*" -print0 | while IFS= read -r -d '' chart; do
(
dir="$(dirname "${chart}")"
cd "${dir}" || exit
Expand Down
3 changes: 3 additions & 0 deletions operator/.helmignore
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,6 @@ PROJECT
README.md.gotmpl
docs/
*.tar
cover.out
testbin/
*.license
0