This action is designed to update the version
field in the Chart.yaml
file with a specified value. It replaces any existing value with the version provided in the version
parameter.
...
steps:
- name: Set Helm Chart Version
uses: launchbynttdata/actions-helm-inject_chart_version@v0
with:
chart_path: path/to/top/Chart.yaml
version: 1.2.3
...
To use this action, you need to provide the following input:
chart_path
: The path to the Helm Chart.yaml to be modified.version
: The Semver version ID to be inserted into the Helm Chart.yaml.