Skip to content

Commit

Permalink
d
Browse files Browse the repository at this point in the history
  • Loading branch information
robinjhuang committed Jun 28, 2024
1 parent 6d7694a commit 954271c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,10 @@ runs:
Set-Location $Env:GITHUB_ACTION_PATH
ls
conda activate comfyui
python download-models.py raw "${{ inputs.models-json }}" "$Env:GITHUB_WORKSPACE\models\"
$jsonInput = '${{ inputs.models-json }}'
$outputDir = "$Env:GITHUB_WORKSPACE\models\"
Write-Host "Running download-models.py with input: $jsonInput and output directory: $outputDir"
python download-models.py raw "$jsonInput" "$outputDir"
- name: '[Win] Run Python application'
if: ${{ inputs.os == 'windows' }}
Expand Down

0 comments on commit 954271c

Please sign in to comment.