-
Notifications
You must be signed in to change notification settings - Fork 10
45 lines (41 loc) · 1.67 KB
/
helm_release.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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