Skip to content

Fix github action (#111) #141

Fix github action (#111)

Fix github action (#111) #141

Workflow file for this run

name: Publish Chart
on:
push:
branches:
- main
jobs:
publish:
name: Publish helm chart
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Run chart-releaser
id: release
uses: helm/[email protected]
with:
config: "./.github/configs/cr.yaml"
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"