diff options
author | Rhea Danzey <rdanzey@element.io> | 2024-09-18 13:21:23 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-18 20:21:23 +0200 |
commit | 3530d2997f9060ac713bc09738a97c32aca91712 (patch) | |
tree | 2e2e1b74c2de50c07dc7412ed8351a619a666330 | |
parent | aa8d10a62d485f02bc5ff2f5543121489dd8449e (diff) |
Ensure Helm packages generated end up in docs/ subpath that's hosted (#3427)
I've noticed that Chart Releaser is behaving improperly, and not
successfully putting the charts where gh-pages will hots them and
generating invalid index.
This change should ensure built charts end up in the `docs/` subpath,
which should ensure that `gh-pages` branch isn't getting an invalid
`index.yaml` and new charts should be automatically available.
### Pull Request Checklist
* [x] I have added Go unit tests or [Complement integration
tests](https://github.com/matrix-org/complement) for this PR _or_ I have
justified why this PR doesn't need tests
* [x] Pull request includes a [sign off below using a legally
identifiable
name](https://matrix-org.github.io/dendrite/development/contributing#sign-off)
_or_ I have already signed off privately
Signed-off-by: `Rhea Danzey <rdanzey@element.io>`
-rw-r--r-- | helm/ct.yaml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/helm/ct.yaml b/helm/ct.yaml index af706fa3..8b5aaa87 100644 --- a/helm/ct.yaml +++ b/helm/ct.yaml @@ -4,4 +4,6 @@ chart-repos: - bitnami=https://charts.bitnami.com/bitnami chart-dirs: - helm -validate-maintainers: false
\ No newline at end of file +validate-maintainers: false +# this should ensure the tarballs are in the appropriate location for GH pages, rather than repo root +package-path: docs/
\ No newline at end of file |