Skip to content

Commit

Permalink
use 'gha-comfyui' conda name everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmonkey4eva committed Jul 10, 2024
1 parent 88386f9 commit 217f7bc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ runs:
- name: "[Win] Check conda environment"
if: ${{ inputs.os == 'windows' }}
run: |
conda activate gha-comfyui
conda activate gha-comfyui
conda info
conda list
shell: powershell
Expand All @@ -235,7 +235,7 @@ runs:
if: ${{ inputs.os == 'windows' }}
run: |
cd $Env:GITHUB_ACTION_PATH
conda activate comfyui
conda activate gha-comfyui
python poll_server_start.py
shell: powershell

Expand All @@ -257,7 +257,7 @@ runs:
shell: powershell
run: |
cd $Env:GITHUB_ACTION_PATH
conda activate comfyui
conda activate gha-comfyui
Write-Host "Running workflows: ${{ inputs.workflow_filenames }}"
python action.py `
--comfy-workflow-names "${{ inputs.workflow_filenames }}" `
Expand Down
2 changes: 1 addition & 1 deletion start-server.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ param (
# Initialize Conda environment
# TODO: remove hardcoding
echo "Starting Conda"
conda activate comfyui
conda activate gha-comfyui

# Start the web server and redirect output to a log file
echo "Running Server"
Expand Down

0 comments on commit 217f7bc

Please sign in to comment.