fleet/.github/workflows/release-helm.yaml
James Alseth 1da89ea987
Publish Helm chart (#475)
This adds a GH Action to publish the updated Helm chart with each new release. It can also be triggered manually if needed.

Fixes #345
2021-03-17 11:09:01 -07:00

18 lines
401 B
YAML

name: release-helm
on:
release:
types: [released] # don't trigger on pre-releases
workflow_dispatch: # allow manual trigger
jobs:
publish-chart:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: stefanprodan/helm-gh-pages@v1.4.1
with:
token: ${{ secrets.GITHUB_TOKEN }}
charts_dir: charts
target_dir: charts
linting: off