Skip to content

chore(deps): update actions/checkout digest to 44c2b7a (#59) #27

chore(deps): update actions/checkout digest to 44c2b7a (#59)

chore(deps): update actions/checkout digest to 44c2b7a (#59) #27

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@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4
with:
fetch-depth: 0
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Run chart-releaser
uses: helm/[email protected]
with:
config: cr-config.yaml
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"