Skip to content

Commit 1673ace

Browse files
Make the final release test optional in the stable release action. (#10103)
1 parent 7f38e4c commit 1673ace

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/stable-release.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,11 @@ on:
2828
required: true
2929
type: string
3030
default: "nvidia"
31+
test_release:
32+
description: 'Test Release'
33+
required: true
34+
type: boolean
35+
default: true
3136

3237
jobs:
3338
package_comfy_windows:
@@ -104,6 +109,10 @@ jobs:
104109
"C:\Program Files\7-Zip\7z.exe" a -t7z -m0=lzma2 -mx=9 -mfb=128 -md=768m -ms=on -mf=BCJ2 ComfyUI_windows_portable.7z ComfyUI_windows_portable
105110
mv ComfyUI_windows_portable.7z ComfyUI/ComfyUI_windows_portable_${{ inputs.rel_name }}.7z
106111
112+
- shell: bash
113+
if: ${{ inputs.test_release }}
114+
run: |
115+
cd ..
107116
cd ComfyUI_windows_portable
108117
python_embeded/python.exe -s ComfyUI/main.py --quick-test-for-ci --cpu
109118

0 commit comments

Comments
 (0)