aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorMatt <washcycle@users.noreply.github.com>2023-02-18 00:25:50 -0600
committerGitHub <noreply@github.com>2023-02-17 22:25:50 -0800
commit00fda86880975041d8ecd822ef9464d3b6dc9f85 (patch)
tree0598c5d3ad5e4991749ad4b247f000d687695600 /.github
parent3f22a9db18f01771a79853e1228688450040d8f2 (diff)
downloadseaweedfs-00fda86880975041d8ecd822ef9464d3b6dc9f85.tar.xz
seaweedfs-00fda86880975041d8ecd822ef9464d3b6dc9f85.zip
Added helm chart publish github actions to github pages on tagging (#4219)
* compatibility patch for csi driver * added namespace to all component parameters * added namespace to all component parameters * dereference in range * added namespace to values.yml defaults * added namespace to s3 component * added helm chart to github pages * added helm chart to github pages * added helm chart to github pages * added helm chart to github pages * added helm chart to github pages * push on all tags * push on all tags * push on all tags * push on all tags * push on all tags * changed helm directory structure * update charts location * fixed dereference * updated permissions * updated permissions * match current action schema
Diffstat (limited to '.github')
-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