Skip to content

fix: codecov action #43

fix: codecov action

fix: codecov action #43

Workflow file for this run

name: Release Charts
on:
push:
paths:
- version.yaml
jobs:
release:
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: Install Helm
uses: azure/setup-helm@v4
with:
version: v3.4.2
- name: Run chart-releaser
uses: helm/[email protected]
with:
charts_dir: helm
config: .chartreleaser.yaml
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"