We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f38e4c commit 1673aceCopy full SHA for 1673ace
.github/workflows/stable-release.yml
@@ -28,6 +28,11 @@ on:
28
required: true
29
type: string
30
default: "nvidia"
31
+ test_release:
32
+ description: 'Test Release'
33
+ required: true
34
+ type: boolean
35
+ default: true
36
37
jobs:
38
package_comfy_windows:
@@ -104,6 +109,10 @@ jobs:
104
109
"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
105
110
mv ComfyUI_windows_portable.7z ComfyUI/ComfyUI_windows_portable_${{ inputs.rel_name }}.7z
106
111
112
+ - shell: bash
113
+ if: ${{ inputs.test_release }}
114
+ run: |
115
+ cd ..
107
116
cd ComfyUI_windows_portable
108
117
python_embeded/python.exe -s ComfyUI/main.py --quick-test-for-ci --cpu
118
0 commit comments