From 6156f3087e55b14b776d5e8a5934fceeaaf4aeca Mon Sep 17 00:00:00 2001 From: Pierre Mavro Date: Wed, 24 Jan 2024 16:13:41 +0100 Subject: [PATCH] feat: github pages publish --- .github/workflows/helm-chart.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/helm-chart.yml diff --git a/.github/workflows/helm-chart.yml b/.github/workflows/helm-chart.yml new file mode 100644 index 0000000..1d96093 --- /dev/null +++ b/.github/workflows/helm-chart.yml @@ -0,0 +1,16 @@ +name: helm-chart +on: + push: + branches: ['main'] + paths: + - charts/** + +jobs: + release: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: publish Helm charts + uses: stefanprodan/helm-gh-pages@master + with: + token: ${{ secrets.GITHUB_TOKEN }}