Add files via upload

This commit is contained in:
Daniel Seifert 2025-06-25 13:39:25 +02:00 committed by GitHub
parent 6b1e9d9128
commit cd2a5e5459
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

28
.github/workflows/release-helm.yaml vendored Normal file
View file

@ -0,0 +1,28 @@
name: Release Charts
on:
push:
branches:
- main
paths:
- 'charts/**'
jobs:
release:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
- name: Run chart-releaser
uses: helm/chart-releaser-action@v1.7.0
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"