Skip to content

Commit

Permalink
Update.
Browse files Browse the repository at this point in the history
  • Loading branch information
robinjhuang committed Jun 26, 2024
1 parent 7340800 commit c4a0e00
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
15 changes: 7 additions & 8 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,13 +94,6 @@ runs:
auto-activate-base: false
python-version: ${{ inputs.python_version }}

- name: '[Unix] Install pip requirements for comfy action'
if: ${{ inputs.os != 'windows' }}
shell: bash -el {0}
run: |
cd ${{ github.action_path }}
pip3 install -r requirements.txt
- name: '[Unix] Install Comfy-CLI'
if: ${{ inputs.os != 'windows' }}
shell: bash -el {0}
Expand Down Expand Up @@ -128,12 +121,18 @@ runs:
conda list
shell: bash -el {0}

- name: '[Unix] Install pip requirements for comfy action'
if: ${{ inputs.os != 'windows' }}
shell: bash -el {0}
run: |
cd ${{ github.action_path }}
pip3 install -r requirements.txt
- name: '[Unix] Download models'
if: ${{ inputs.os != 'windows' }}
shell: bash -el {0}
run: |
cd ${{ github.action_path }}
ls "${{ github.workspace }}"
python3 download-models.py raw '${{ inputs.models-json }}' "${{ github.workspace }}/models/"
- name: '[Unix] Install dependencies'
Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
requests
comfy-cli
google-cloud-storage
google-cloud-storage
charset-normalizer

0 comments on commit c4a0e00

Please sign in to comment.