mirror of
https://github.com/fleetdm/fleet
synced 2026-05-22 16:39:01 +00:00
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
17 lines
401 B
YAML
17 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
|