8000 Fix Helm Chart Build by nigthknight · Pull Request #319 · secureCodeBox/secureCodeBox · GitHub
[go: up one dir, main page]

Skip to content
Merged
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
4 changes: 4 additions & 0 deletions .github/workflows/helm-charts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ jobs:
PASSWORD: ${{ secrets.HELM_REGISTRY_PASSWORD }}
run: |
RELEASE_VERSION="${GITHUB_REF#refs/*/}"
# Remove leading 'v' from git tag to create valid semver
RELEASE_VERSION="${RELEASE_VERSION//v}"
# Publish all helm3 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
Expand All @@ -37,6 +39,8 @@ jobs:
PASSWORD: ${{ secrets.HELM_REGISTRY_PASSWORD }}
run: |
RELEASE_VERSION="${GITHUB_REF#refs/*/}"
# Remove leading 'v' from git tag to create valid semver
RELEASE_VERSION="${RELEASE_VERSION//v}"
# Publish all helm2 charts in all folders containing a `helm2.Chart.yaml` file
# https://github.com/koalaman/shellcheck/wiki/SC2044
find . -type f -name helm2.Chart.yaml -print0 | while IFS= read -r -d '' chart; do
Expand Down
0