Open stevehipwell opened 3 years ago
hi @stevehipwell, I've created another project that can be used as github action and it implements the json output you requested. The project is https://github.com/pete911/hcr and there is an example of how to use it as github action.
It logs to stderr, but the result in json is printed in stdout, so you can just run it as hcr 2> /dev/null
to get only json output.
I'd like to be able drive further actions from the output of the chart releaser action. My suggested implementation would be to return json in the format `[{"chart": "my-chart", "version": "1.0.0", "tag": "my-chart-1.0.0"}].
This output could then be used to drive a matrix. See below for an example of updating the release notes with a CHANGELOG entry (for https://github.com/helm/chart-releaser-action/issues/44).