Skip to content

Merge pull request #124 from akash4sh/main #108

Merge pull request #124 from akash4sh/main

Merge pull request #124 from akash4sh/main #108

Workflow file for this run

name: Helm Chart publish
on:
push:
paths:
- 'charts/**'
branches:
- main
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: Add Helm repos
run: |
helm repo add cassandra https://charts.helm.sh/incubator
helm repo add prometheus https://prometheus-community.github.io/helm-charts
helm repo add elasticsearch https://helm.elastic.co
helm repo add grafana https://grafana.github.io/helm-charts
helm repo add k8ssandra-operator https://helm.k8ssandra.io/stable
helm repo add bitnami https://charts.bitnami.com/bitnami
helm repo add falcosecurity https://falcosecurity.github.io/charts
helm repo add signoz https://signoz.github.io/charts
helm repo add jetstack https://charts.jetstack.io
helm repo add minio https://charts.min.io
helm repo add ingress-nginx https://kubernetes.github.io/ingress-nginx
helm repo add policy-reporter https://kyverno.github.io/policy-reporter
helm repo add kubeshop https://kubeshop.github.io/helm-charts
helm repo add nats https://nats-io.github.io/k8s/helm/charts/
helm repo add tekton-pipeline https://cdfoundation.github.io/tekton-helm-chart/
- name: Run chart-releaser
uses: helm/[email protected]
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
CR_SKIP_EXISTING: true