Skip to content

build(deps): bump github.com/docker/docker #4

build(deps): bump github.com/docker/docker

build(deps): bump github.com/docker/docker #4

Workflow file for this run

name: Release Charts
on:
push:
branches:
- main
paths:
- "deploy/kubernetes/helm/**"
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/[email protected]
with:
version: v3.7.1
- name: Run chart-releaser
uses: helm/[email protected]
with:
charts_dir: deploy/kubernetes/helm
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
CR_RELEASE_NAME_TEMPLATE: "sloth-helm-chart-{{ .Version }}"