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.
This commit is contained in:
2024-08-14 21:50:12 +02:00
parent 8937d5f307
commit f56df7eb29

View File

@@ -97,12 +97,12 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
shell: bash shell: bash
- name: Delete temporary branch # - name: Delete temporary branch
id: delete_temp_branch # id: delete_temp_branch
run: | # run: |
git checkout main # git checkout main
git branch -D temp_branch # git branch -D temp_branch
shell: bash # shell: bash
- name: Release - name: Release
uses: softprops/action-gh-release@v2 uses: softprops/action-gh-release@v2