Skip to content

Compatibility Matrix Update 2024-09-28 (#1425) #939

Compatibility Matrix Update 2024-09-28 (#1425)

Compatibility Matrix Update 2024-09-28 (#1425) #939

Workflow file for this run

name: Publish Chart
on:
push:
branches:
- master
- cd-scaffolding
jobs:
publish:
name: Publish helm chart
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- uses: azure/setup-helm@v3
- name: Add repos
run: |
helm repo add vmware https://vmware-tanzu.github.io/helm-charts
helm repo add radar https://radar-base.github.io/radar-helm-charts
helm repo add fluxcd-community https://fluxcd-community.github.io/helm-charts
helm repo add dashboard https://kubernetes.github.io/dashboard
- name: Run chart-releaser
id: release
uses: helm/[email protected]
with:
config: "./.github/configs/cr.yaml"
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"