Skip to content

Added lint & updated maintainer (#1) #1

Added lint & updated maintainer (#1)

Added lint & updated maintainer (#1) #1

Workflow file for this run

name: "Publish charts to repo"
on:
push:
branches:
- main
tags:
- "*"
paths:
- "charts/**"
jobs:
publish:
runs-on: ubuntu-latest
permissions:
pages: write
contents: write
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: Install Helm
uses: azure/setup-helm@v4
- name: Run chart-releaser
uses: helm/[email protected]
with:
charts_dir: charts
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"