@@ -215,7 +215,6 @@ runs:
215
215
shell : powershell
216
216
run : |
217
217
conda env create -f ${{ inputs.conda_env_file }}
218
- conda activate comfyui
219
218
220
219
- name : " [Win] Check conda environment"
221
220
if : ${{ inputs.os == 'windows' }}
@@ -228,6 +227,7 @@ runs:
228
227
if : ${{ inputs.os == 'windows' }}
229
228
id : generate_hash_windows
230
229
run : |
230
+ conda activate comfyui
231
231
Set-Location ${{ env.GITHUB_ACTION_PATH }}
232
232
$hash = python3 hash_string.py '${{ inputs.models-json }}'
233
233
echo "##[set-output name=hash;]$hash"
@@ -255,6 +255,7 @@ runs:
255
255
shell : powershell
256
256
run : |
257
257
Set-Location ${{ env.GITHUB_ACTION_PATH }}
258
+ conda activate comfyui
258
259
python download-models.py raw "${{ inputs.models-json }}" "${{ env.GITHUB_WORKSPACE }}\models\"
259
260
260
261
- name : ' [Win] Run Python application'
@@ -271,6 +272,7 @@ runs:
271
272
if : ${{ inputs.os == 'windows' }}
272
273
run : |
273
274
cd $Env:GITHUB_ACTION_PATH
275
+ conda activate comfyui
274
276
python poll_server_start.py
275
277
shell : powershell
276
278
@@ -292,6 +294,7 @@ runs:
292
294
shell : powershell
293
295
run : |
294
296
Set-Location ${{ env.GITHUB_ACTION_PATH }}
297
+ conda activate comfyui
295
298
Write-Host "Running workflows: ${{ inputs.workflow_filenames }}"
296
299
python queue_prompt.py `
297
300
--comfy-workflow-names "${{ inputs.workflow_filenames }}" `
0 commit comments