Skip to content

Merge pull request #1376 from Kellen275/kgsappington/template-namespaces #121

Merge pull request #1376 from Kellen275/kgsappington/template-namespaces

Merge pull request #1376 from Kellen275/kgsappington/template-namespaces #121

name: Release Helm Charts
on:
push:
branches:
- master
paths:
- "charts/**"
permissions:
contents: write # Create new release to host chart artifacts
pages: write # Publish chart to pages
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
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]
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
with:
config: .github/workflows/cr.yaml