From 83f71641630584754afb6e2d6428646a885277b9 Mon Sep 17 00:00:00 2001 From: Souvik Date: Mon, 3 Feb 2025 21:27:16 +0530 Subject: [PATCH] [docs] updated release.yaml --- .github/workflows/release.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5607c01..f0573db 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,6 +13,18 @@ jobs: with: fetch-depth: 0 + + - name: Package Helm Chart + run: | + helm package charts/tooljet --destination charts/ + + - name: Update index.yaml + run: | + helm repo index charts/ --url https://slancerk.github.io/helm-charts-artifactory-test/charts/ + git add charts/index.yaml + git commit -m "Update Helm repo index" + git push origin setup-chart-release + - name: Configure Git run: | git config user.name "$GITHUB_ACTOR"