Skip to content

Helm Charts

Helm Charts #44

Workflow file for this run

name: Helm Charts
on:
workflow_run:
workflows:
- "Test Chart"
branches:
- main
types:
- completed
jobs:
release:
name: Publish Helm Chart
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' }}
permissions:
contents: write
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: Run chart-releaser
uses: helm/[email protected]
with:
config: cr-config.yaml
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"