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
5 changes: 5 additions & 0 deletions .github/ct.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,10 @@ chart-dirs:
- charts
# The chart intentionally ships without a maintainers field; don't fail on it.
validate-maintainers: false
# A pull request may change the chart without bumping its version. Such a change
# simply is not released: chart-releaser skips a version that already has a
# release, and the next version bump ships the accumulated changes. Requiring a
# bump per pull request would force a chart release for every merge.
check-version-increment: false
# yamllint config matching the chart's inline-comment style.
lint-conf: .github/lintconf.yaml
7 changes: 7 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,14 @@ jobs:
with:
version: v3.16.3

# A merge that changes the chart without bumping its version must not fail
# here. chart-releaser detects the chart as changed since the last tag and
# repackages it, so without `skip_existing` the upload of an already
# released version aborts the job. Skipping leaves the existing release
# untouched; the changes ship with the next version bump.
- name: Run chart-releaser
uses: helm/chart-releaser-action@v1.7.0
with:
skip_existing: true
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
Loading