Skip to content

chore(deps): bump actions/checkout from 3 to 4 (#21) #79

chore(deps): bump actions/checkout from 3 to 4 (#21)

chore(deps): bump actions/checkout from 3 to 4 (#21) #79

Workflow file for this run

name: Release Charts
on:
push:
branches:
- master
jobs:
release:
runs-on: ubuntu-latest
permissions:
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 "$GITHUB_ACTOR@users.noreply.github.com"
- name: Install Helm
uses: azure/setup-helm@v3.5
with:
version: v3.8.1
- name: Run chart-releaser
uses: helm/chart-releaser-action@v1.5.0
with:
config: cr.yaml
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"