Skip to content

feat: automatically update changelog after release #12

feat: automatically update changelog after release

feat: automatically update changelog after release #12

name: Release Charts
on:
push:
branches:
- master
paths:
- helm-charts/**
jobs:
chart_release:
name: Release Charts
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0 # chart releaser will not work without this param
- name: Configure Git
run: |
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
- name: Run chart-releaser
uses: helm/[email protected]
with:
skip_existing: true
mark_as_latest: false
packages_with_index: true
charts_dir: helm-charts
pages_branch: gh-pages
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"