Skip to content

feat: add workflow to publish helm chart to gh pages #8

feat: add workflow to publish helm chart to gh pages

feat: add workflow to publish helm chart to gh pages #8

Workflow file for this run

name: Release Charts
on:
push:
branches:
- main
- helm_chart
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/chart-releaser-action@v1.7.0
with:
skip_existing: false
mark_as_latest: false
packages_with_index: true
charts_dir: helm-charts
pages_branch: gh-pages
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"