2021-03-17 18:09:01 +00:00
|
|
|
name: release-helm
|
|
|
|
on:
|
|
|
|
release:
|
|
|
|
types: [released] # don't trigger on pre-releases
|
|
|
|
workflow_dispatch: # allow manual trigger
|
|
|
|
|
2022-03-28 20:20:31 +00:00
|
|
|
|
2021-06-29 19:43:13 +00:00
|
|
|
permissions:
|
2022-03-28 20:20:31 +00:00
|
|
|
contents: read
|
2021-06-29 19:43:13 +00:00
|
|
|
|
2021-03-17 18:09:01 +00:00
|
|
|
jobs:
|
|
|
|
publish-chart:
|
2022-03-28 20:20:31 +00:00
|
|
|
permissions:
|
|
|
|
contents: write # to push helm charts
|
2021-03-17 18:09:01 +00:00
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
2022-08-31 10:44:22 +00:00
|
|
|
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # v2
|
2022-04-19 00:52:54 +00:00
|
|
|
- uses: stefanprodan/helm-gh-pages@b43a8719cc63fdb3aa943cc57359ab19118eab3f
|
2021-03-17 18:09:01 +00:00
|
|
|
with:
|
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
charts_dir: charts
|
|
|
|
target_dir: charts
|
2022-03-28 20:20:31 +00:00
|
|
|
linting: off
|