From 0b901381efa1a2f88c17aad800721487cde191e0 Mon Sep 17 00:00:00 2001 From: Hy3n4 Date: Tue, 14 Nov 2023 18:26:11 +0100 Subject: [PATCH] feat(helm): helm chart publisher Signed-off-by: Hy3n4 --- .github/workflows/publish-helm-chart.yaml | 26 +++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/publish-helm-chart.yaml diff --git a/.github/workflows/publish-helm-chart.yaml b/.github/workflows/publish-helm-chart.yaml new file mode 100644 index 0000000..32489ec --- /dev/null +++ b/.github/workflows/publish-helm-chart.yaml @@ -0,0 +1,26 @@ +name: Publish Chart +on: + push: + branches: + - main + +jobs: + release: + permissions: + contents: write + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Install Helm + uses: azure/setup-helm@v3 + + - name: Run chart-releaser + uses: helm/chart-releaser-action@v1.6.0 + env: + CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" + with: + charts_dir: helm