From 4f70abab17aab3ffb2e4a874af18a5b380f2c4ab Mon Sep 17 00:00:00 2001 From: Maxime Beauchemin Date: Mon, 25 Nov 2024 13:46:05 -0800 Subject: [PATCH] force create/push the branch --- .github/workflows/superset-helm-release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/superset-helm-release.yml b/.github/workflows/superset-helm-release.yml index ac7af138b28..967e362ce8f 100644 --- a/.github/workflows/superset-helm-release.yml +++ b/.github/workflows/superset-helm-release.yml @@ -55,7 +55,8 @@ jobs: run: | # Cloning gh-pages into working branch git checkout gh-pages - git checkout -b ${{ env.branch_name }} + git checkout -B ${{ env.branch_name }} + git push origin ${{ env.branch_name }} -f # Back to where we started git checkout ${{ inputs.ref || github.ref_name }}