From 32090ac264d2bd787d4ed81d1515cfde5e3cc962 Mon Sep 17 00:00:00 2001 From: Igor Dianov Date: Mon, 18 Sep 2023 01:15:58 -0700 Subject: [PATCH] AAE-16060 Fix Helm Release and Publish for RC workflows on some repositories (#324) --- .github/actions/helm-publish-chart/action.yml | 9 +++++++++ version.txt | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/actions/helm-publish-chart/action.yml b/.github/actions/helm-publish-chart/action.yml index a2f5d19a0..90dcf157f 100644 --- a/.github/actions/helm-publish-chart/action.yml +++ b/.github/actions/helm-publish-chart/action.yml @@ -117,6 +117,15 @@ runs: commit-message: ${{ steps.compute-git-commit-message.outputs.result }} repository-directory: ${{ env.CHECKOUT_PATH }} + - name: Update remote branch + env: + GITHUB_TOKEN: ${{ inputs.token }} + working-directory: ${{ env.CHECKOUT_PATH }} + shell: bash + run: | + git pull --rebase + git push --dry-run origin + - name: Push changes if: inputs.do-push == 'true' env: diff --git a/version.txt b/version.txt index 6d260c3af..040943e56 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -v3.2.0 +v3.2.1