feat: add release-helm-chart

This commit is contained in:
2025-12-24 10:19:33 +01:00
parent db88e979bb
commit 00791cd436
3 changed files with 54 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
# 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 }}
```