Skip to content

chore(deps): update actions/checkout digest to a5ac7e5 (#61) #29

chore(deps): update actions/checkout digest to a5ac7e5 (#61)

chore(deps): update actions/checkout digest to a5ac7e5 (#61) #29

Workflow file for this run

name: Helm Charts
on:
push:
branches:
- main
jobs:
release:
name: Publish Helm Chart
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # 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: Run chart-releaser
uses: helm/chart-releaser-action@v1.6.0
with:
config: cr-config.yaml
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"