From 7a977b64c227df73bfe5b6a52d41e158437c58b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tibor=20Cs=C3=B3ka?= Date: Wed, 17 Aug 2022 01:22:21 +0200 Subject: [PATCH] Add helm release automation --- .github/workflows/helm-release.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/helm-release.yml diff --git a/.github/workflows/helm-release.yml b/.github/workflows/helm-release.yml new file mode 100644 index 0000000..955c844 --- /dev/null +++ b/.github/workflows/helm-release.yml @@ -0,0 +1,20 @@ +--- + +name: release helm chart +on: + push: + tags: 'v[0-9]+.[0-9]+.*[0-9]*' + +jobs: + release: + runs-on: ubuntu-latest + steps: + - name: checkout + uses: actions/checkout@v2 + - name: publish Helm charts + uses: stefanprodan/helm-gh-pages@master + with: + token: ${{ secrets.GITHUB_TOKEN }} + branch: gh-pages + target_dir: ./deploy/godaddy-webhook + linting: off