Skip to content

Commit 555f902

Browse files
Fix stable workflow creating multiple draft releases. (#10067)
1 parent 1364548 commit 555f902

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/stable-release.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -112,10 +112,9 @@ jobs:
112112
ls
113113
114114
- name: Upload binaries to release
115-
uses: svenstaro/upload-release-action@v2
115+
uses: softprops/action-gh-release@v2
116116
with:
117-
repo_token: ${{ secrets.GITHUB_TOKEN }}
118-
file: ComfyUI_windows_portable_${{ inputs.rel_name }}.7z
119-
tag: ${{ inputs.git_tag }}
120-
overwrite: true
117+
files: ComfyUI_windows_portable_${{ inputs.rel_name }}.7z
118+
tag_name: ${{ inputs.git_tag }}
121119
draft: true
120+
overwrite_files: true

0 commit comments

Comments
 (0)