chart-releaser-action icon indicating copy to clipboard operation
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

Results 74 chart-releaser-action issues
Sort by recently updated
recently updated
newest added

I am adding a dependency to my chart to the following repository: https://k8s.ory.sh/helm/charts The documentation for all the charts in this repo is mentioned here and works as expected: http://k8s.ory.sh/helm/...

This change resolves #108 by adding the option to skip the packaging step altogether.

size/M

got an error when pushing updated index.yaml to gh-pages branch ```bash Pushing to branch "gh-pages" fatal: unable to access '***github.com//helm-charts/': URL using bad/illegal format or missing URL Error: exit status...

Hi, I'm having a bit of trouble getting this workflow to work. You can find my workflow [here](https://github.com/prologic/netdata-helmchart/blob/master/.github/workflows/release.yml) Basically when I run this and make some chart changes I end...

There is a nice tool to run github actions locally: https://github.com/nektos/act Unfortunately, it seems that it fails on committing `index.yaml` step. My workflow ```yaml name: Release Charts on: push: branches:...

Hi, I am trying to use the action from one repo and actually publish in another. I was trying with this option : - name: Run chart-releaser uses: helm/[email protected] env:...

I'm working to integrate the chart releaser action into our GitHub release pipeline and have hit an issue of conflicting assumptions. Our release pipeline is triggered off creating a new...

Just a generic question. When reading through https://helm.sh/docs/topics/chart_repository/ documentation I initially had the feeling that using github pages to publish chart would consist of hosting `index.yaml` + `.tgz` files just...

In the file [cr.sh](https://github.com/helm/chart-releaser-action/blob/a3454e46a6f5ac4811069a381e646961dda2e1bf/cr.sh#L226) you use the function `lookup_latest_tag()` to download all the tags and later on, calculate the next release to create. ```sh lookup_latest_tag() { git fetch --tags >...

after reading through the PRs and issues on this project, it seems there are a number of requests for more custom packaging. These include things like tagging the chart based...