From f56df7eb29853bff498d34c958c11de106202dde Mon Sep 17 00:00:00 2001 From: Max P Date: Wed, 14 Aug 2024 21:50:12 +0200 Subject: [PATCH] Comment out temporary branch deletion in workflow ### Details Disabled the step for deleting the temporary branch in the release workflow by commenting out the relevant lines. This adjustment prevents potential issues caused by branch deletion during the release process and ensures the stability of the workflow until a more robust solution is implemented. --- .github/workflows/CreateRelease.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/CreateRelease.yml b/.github/workflows/CreateRelease.yml index c138162..bb4ac0a 100644 --- a/.github/workflows/CreateRelease.yml +++ b/.github/workflows/CreateRelease.yml @@ -97,12 +97,12 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} shell: bash - - name: Delete temporary branch - id: delete_temp_branch - run: | - git checkout main - git branch -D temp_branch - shell: bash + # - name: Delete temporary branch + # id: delete_temp_branch + # run: | + # git checkout main + # git branch -D temp_branch + # shell: bash - name: Release uses: softprops/action-gh-release@v2