From bc89ac9e61cda8e122dc1e4f0d1af2016d03349e Mon Sep 17 00:00:00 2001 From: Jean-Baptiste DONNETTE Date: Fri, 18 Oct 2024 09:28:07 +0200 Subject: [PATCH 1/2] feat(charts): Fixing chart repository pipeline --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3ad5748..d20e1ae 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -33,7 +33,6 @@ jobs: - name: Run chart-releaser uses: helm/chart-releaser-action@v1.6.0 with: - charts_dir: "." config: cr.yaml env: CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" @@ -41,6 +40,7 @@ jobs: - name: Deploy to GitHub Pages run: | git checkout gh-pages + git pull origin main --rebase --autostash helm repo index . --url https://getlago.github.io/lago-helm-charts git add . git commit -m "Update Helm repo index for tag ${{ github.event.inputs.tag }}" From 25b8ac84f68a138e78e3b2e4c97076bb68512396 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste DONNETTE Date: Fri, 18 Oct 2024 09:30:24 +0200 Subject: [PATCH 2/2] fix(charts): changing url charts path --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d20e1ae..083cc65 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -41,7 +41,7 @@ jobs: run: | git checkout gh-pages git pull origin main --rebase --autostash - helm repo index . --url https://getlago.github.io/lago-helm-charts + helm repo index . --url https://getlago.github.io/charts git add . git commit -m "Update Helm repo index for tag ${{ github.event.inputs.tag }}" git push origin gh-pages