Initial commit

This commit is contained in:
Martin Šalata
2021-04-02 21:53:17 +02:00
commit da0fc5b188
27 changed files with 2162 additions and 0 deletions

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