Skip to content

Remove HSP branding #56

Remove HSP branding

Remove HSP branding #56

Workflow file for this run

name: Release Charts
on:
push:
branches:
- main
paths:
- 'charts/**'
- '.github/workflows/release.yml'
jobs:
release:
runs-on: ubuntu-22.04
permissions:
contents: write
steps:
- name: Checkout
uses: actions/[email protected]
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.10.0
- name: Add dependency chart repos
run: |
helm repo add fluent https://fluent.github.io/helm-charts
- name: Run chart-releaser
uses: helm/[email protected]
env:
CR_TOKEN: '${{ secrets.GITHUB_TOKEN }}'