[GHA] Update go-monorepo chart #124
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release Charts | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- charts/** | |
workflow_dispatch: | |
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: Set up Helm | |
uses: azure/[email protected] | |
with: | |
version: v3.12.1 | |
- name: Add k8s-at-home repo | |
run: helm repo add k8s-at-home https://library-charts.k8s-at-home.com | |
- name: Add bitnami repo | |
run: helm repo add bitnami https://charts.bitnami.com/bitnami | |
- name: Add krzwiatrzyk repo | |
run: helm repo add krzwiatrzyk https://krzwiatrzyk.github.io/charts/ | |
- name: Add cockroach repo | |
run: helm repo add cockroachdb https://charts.cockroachdb.com/ | |
- name: Add repos | |
run: | | |
helm repo add prometheus https://prometheus-community.github.io/helm-charts | |
helm repo add grafana https://grafana.github.io/helm-charts | |
- name: Run chart-releaser | |
uses: helm/[email protected] | |
env: | |
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
CR_SKIP_EXISTING: true |