mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
1da89ea987
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
18 lines
401 B
YAML
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
|