From b0abc3bf434630d3dff683326232c9dd9a967841 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste DONNETTE Date: Wed, 30 Oct 2024 10:32:47 +0100 Subject: [PATCH] fix(release-gha): Fixing git commands --- .github/workflows/release.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4f48b45..e52f78e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -48,13 +48,12 @@ jobs: - name: Deploy to GitHub Pages if: env.has_release_label == 'true' run: | - - git pull origin main --rebase + git pull origin main helm package . --destination charts/ helm repo index . --url https://getlago.github.io/charts git add . git commit -m "Update Helm repo index after release" - git pull --rebase + git pull git status git push origin gh-pages