Files
goldpinger/.github/workflows/helm-publish.yaml
Derek Brown 4af6666853 feat: add helm chart
Signed-off-by: Derek Brown <derektbrown@users.noreply.github.com>
2023-09-25 15:51:14 -07:00

25 lines
563 B
YAML

name: Helm Publish
on:
push:
branches:
- master
jobs:
helm_publish:
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.6.0
with:
charts_dir: helm
token: "${{ secrets.GITHUB_TOKEN }}"