mirror of
https://github.com/kubereboot/kured.git
synced 2026-08-23 21:36:33 +00:00
- Made all the file extensions ".yaml" - Regrouped actions together to make it easy to see when they are useful: on-pr is useful at every PR, on-tag when we are ready to tag next image, on-pr-chart when we have a PR to modify the chart with the published image, on-release when we have released and need to publish the final helm chart - Regrouped periodic jobs together, to deal with stale prs/issues and ensuring that our helm chart always works.
20 lines
398 B
YAML
20 lines
398 B
YAML
name: Publish release
|
|
on:
|
|
release:
|
|
types: published
|
|
|
|
jobs:
|
|
publish-helm-chart:
|
|
name: Publish our chart
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: "0"
|
|
|
|
- name: Publish Helm chart
|
|
uses: stefanprodan/helm-gh-pages@master
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
charts_dir: charts
|