Add github workflow for releasing the helm chart

This commit is contained in:
Martin Šalata
2021-04-02 21:43:17 +02:00
parent fcaaf34457
commit d770d27a67

21
.github/workflows/release.yaml vendored Normal file
View File

@@ -0,0 +1,21 @@
name: Release Charts
on:
push:
branches:
- master
paths:
- 'charts/**'
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
- name: Run chart-releaser
uses: helm/chart-releaser-action@master