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:
12
.github/workflows/CreateRelease.yml
vendored
12
.github/workflows/CreateRelease.yml
vendored
@@ -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
|
||||||
|
Reference in New Issue
Block a user