Skip to content

Commit

Permalink
fix input image copy commands
Browse files Browse the repository at this point in the history
argh
  • Loading branch information
mcmonkey4eva committed Aug 22, 2024
1 parent 9f02fb6 commit d448201
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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' }}
Expand Down Expand Up @@ -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'
Expand Down

0 comments on commit d448201

Please sign in to comment.