Skip to content

Merge pull request #8 from SomeBlackMagic/requestlimitgrafana #114

Merge pull request #8 from SomeBlackMagic/requestlimitgrafana

Merge pull request #8 from SomeBlackMagic/requestlimitgrafana #114

Workflow file for this run

name: Release Charts
on:
push:
branches:
- master
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/setup-helm@v1
with:
version: v3.4.0
- name: Set up Helm repos
run: |
helm repo add bitnami https://charts.bitnami.com/bitnami/
helm repo add someblackmagic https://someblackmagic.github.io/helm-charts
helm repo add haproxy https://haproxytech.github.io/helm-charts/
- name: Run chart-releaser
uses: helm/[email protected]
with:
config: ct.yaml
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"