chart-releaser-action
chart-releaser-action copied to clipboard
A GitHub Action to turn a GitHub project into a self-hosted Helm chart repo, using helm/chart-releaser CLI tool
Add support for pushing charts to GHCR in addition to releases. As of [helm v3.8.0](https://github.com/helm/helm/releases/tag/v3.8.0), oci support is now generally available. Dependency: https://github.com/helm/chart-releaser/issues/183
The pipeline works fine but when I add the repo and try to use it, I get the following error: ``` Error: Failed to fetch https://github.com/{{org}}/{{repo}}/releases/download/{{version}}/{{version}}.tgz : 404 Not Found...
Hi, the action always returns `no changes detected`? ```yaml on: push: branches: [master] jobs: release-chart: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Configure Git run: | git config user.name...
helm/chart-releaser-action does not work on actions triggered by a tag because the `lookup_changed_charts` will never find differences in the charts. The problem is that `lookup_latest_tag` returns the tag that triggered...
A cool feature to see added would be the ability to sign charts per the [provenance](https://helm.sh/docs/topics/provenance/) documentation
I think the centralized chart repository is a great pattern and fits several use cases (if not most of them), but I can think of more than one occasions when...
Lets say I have a Git repository structured like this: ``` github.com/myorg/helm-charts chart1/ templates/ Chart.yaml chart2/ templates/ Chart.yaml README.md ``` If I pass the `chart_dir` in my GitHub Workflow file...
Current action parses only locally available charts. But it's very inconvenient to manage large single monorepo with plenty of different charts, because we've got a mess of PRs, commits and...
My chart releaser action is sometimes (randomly) failing with the following error: I use chart-releaser-action v.1.2.1 ``` Looking up latest tag... Discovering changed charts since 'v1.1.4'... Installing chart-releaser... Adding cr...
We'd like to add a few additional guides to our helm repo vs locating separately. AFAICT, the action will commit certain files to the `gh-pages` branch. So - * How...