Merge Helm to Master branch (#302)

* Added chart

* Added github actions

* Fix actions

* Added README.md

Co-authored-by: David Bomba <turbo124@gmail.com>
This commit is contained in:
Ween Jiann
2021-03-24 09:33:29 +08:00
committed by GitHub
parent 789e49fe1b
commit e19641f754
19 changed files with 1346 additions and 0 deletions

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

@@ -0,0 +1,32 @@
name: Release Charts
on:
push:
branches:
- master
paths:
- "chart/**"
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"
- uses: azure/setup-helm@v1
id: install
- name: Add Helm repos
run: |
helm repo add bitnami https://charts.bitnami.com/bitnami
- name: Run chart-releaser
uses: helm/chart-releaser-action@master
env:
CR_TOKEN: "${{ secrets.CR_TOKEN }}"