All checks were successful
CD / Release (push) Successful in 11s
Reviewed-on: #10 Co-authored-by: Timo Behrendt <t.behrendt@t00n.de> Co-committed-by: Timo Behrendt <t.behrendt@t00n.de>
24 lines
676 B
Markdown
24 lines
676 B
Markdown
# release-helm-chart
|
|
|
|
Packages and releases a Helm chart to a Gitea Helm registry.
|
|
|
|
## Inputs
|
|
|
|
| Input | Description | Required |
|
|
| ------------------- | ----------------------------- | -------- |
|
|
| `tag` | The version tag to release | Yes |
|
|
| `name` | The name of the Helm chart | Yes |
|
|
| `registry-user` | The username for the registry | Yes |
|
|
| `registry-password` | The password for the registry | Yes |
|
|
|
|
## Example
|
|
|
|
```yaml
|
|
- uses: ./release-helm-chart
|
|
with:
|
|
tag: v1.2.3
|
|
name: my-chart
|
|
registry-user: myuser
|
|
registry-password: ${{ secrets.REGISTRY_PASSWORD }}
|
|
```
|