Migrated helm chart from jameswynn/helm-charts

Standard chart release pipeline from:
https://helm.sh/docs/howto/chart_releaser_action/
This commit is contained in:
James Wynn 2023-02-23 14:36:55 -06:00
parent b65f6fca19
commit 563cc9ce60
9 changed files with 379 additions and 0 deletions

25
.github/workflows/chart-publish.yml vendored Normal file
View file

@ -0,0 +1,25 @@
name: Chart Publish
on:
push:
branches:
- main
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 "$GITHUB_ACTOR@users.noreply.github.com"
- name: Run chart-releaser
uses: helm/chart-releaser-action@v1.1.0
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"