Skip to content

Update charts and README files with latest information #7

Update charts and README files with latest information

Update charts and README files with latest information #7

Workflow file for this run

name: helm release
on:
workflow_dispatch:
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 "[email protected]"
- name: run chart-releaser
uses: helm/[email protected]
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"