An open API service indexing awesome lists of open source software.

https://github.com/launchbynttdata/actions-helm-inject_chart_version

GitHub Action for Helm to inject Chart version
https://github.com/launchbynttdata/actions-helm-inject_chart_version

actions helm platform-automation

Last synced: 24 days ago
JSON representation

GitHub Action for Helm to inject Chart version

Awesome Lists containing this project

README

          

# Github Action to Set Helm Chart Version in Chart.yaml

## About

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.

## Usage

```workflow
...
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.