aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/helm_chart_release.yml22
1 files changed, 22 insertions, 0 deletions
diff --git a/.github/workflows/helm_chart_release.yml b/.github/workflows/helm_chart_release.yml
new file mode 100644
index 000000000..15dd6b059
--- /dev/null
+++ b/.github/workflows/helm_chart_release.yml
@@ -0,0 +1,22 @@
+name: "helm: publish charts"
+on:
+ push:
+ tags:
+ - '*'
+
+permissions:
+ contents: write
+ pages: write
+
+jobs:
+ release:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v3
+ - name: Publish Helm charts
+ uses: stefanprodan/helm-gh-pages@master
+ with:
+ token: ${{ secrets.GITHUB_TOKEN }}
+ charts_dir: k8s/charts
+ target_dir: helm
+ branch: gh-pages \ No newline at end of file