Skip to content

publish_helm_chart

publish_helm_chart #4

Workflow file for this run

name: publish_helm_chart
on:
workflow_run:
workflows: [ "Create, Scan and Publish KDM image" ]
types: [ completed ]
branches: [ release-** ]
jobs:
release:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' }}
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]
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"