From d448201e1ca4e7f3454ce511150c1ab062fbf8f9 Mon Sep 17 00:00:00 2001 From: "Alex \"mcmonkey\" Goodwin" Date: Wed, 21 Aug 2024 21:49:33 -0700 Subject: [PATCH] fix input image copy commands argh --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 2743c48..b9ab4d0 100644 --- a/action.yml +++ b/action.yml @@ -180,7 +180,7 @@ runs: which pip pip install -r requirements.txt python default-models-prep.py --cache-directory ~/.cache/comfy-actions-runner/modelcache --live-directory "$GITHUB_WORKSPACE/models" - cp -r "${{ github.action_path }}/workflow-images" "$GITHUB_WORKSPACE/input" + cp -r "${{ github.action_path }}/workflow-images/*" "$GITHUB_WORKSPACE/input" - name: '[Unix] Run ComfyUI quick test' if: ${{ inputs.os != 'windows' && inputs.skip_quick_ci != 'true' }} @@ -382,7 +382,7 @@ runs: cd $Env:GITHUB_ACTION_PATH pip install -r requirements.txt python default-models-prep.py --cache-directory C:\actions-runner\modelcache --live-directory "$Env:GITHUB_WORKSPACE/models" - Copy-Item -Path "$Env:GITHUB_ACTION_PATH\workflow-images" -Destination "$Env:GITHUB_WORKSPACE\input" -Recurse + Copy-Item -Path "$Env:GITHUB_ACTION_PATH\workflow-images\*" -Destination "$Env:GITHUB_WORKSPACE\input" -Recurse shell: powershell - name: '[Win] Run ComfyUI quick test'