Skip to content

Commit

Permalink
Fix skip_quickci condition in ComfyUI action.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
yoland68 committed Jul 11, 2024
1 parent aca073b commit 2af1b4c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,10 @@ inputs:
description: "Comfy Org API endpoint"
required: false
default: "https://api.comfy.org/upload-artifact"
skip_quickci:
description: "Skip quickci."
required: false
default: "true"
runs:
using: "composite"
steps:
Expand Down Expand Up @@ -130,7 +134,7 @@ runs:
python default-models-prep.py --cache-directory ~/.cache/comfy-actions-runner/modelcache --live-directory "$GITHUB_WORKSPACE/models"
- name: '[Unix] Run ComfyUI quick test'
if: ${{ inputs.os != 'windows' }}
if: ${{ inputs.os != 'windows' && inputs.skip_quick_ci != 'true' }}
shell: bash -el {0}
run: |
python3 main.py --quick-test-for-ci
Expand Down Expand Up @@ -294,7 +298,7 @@ runs:
shell: powershell

- name: '[Win] Run ComfyUI quick test'
if: ${{ inputs.os == 'windows' }}
if: ${{ inputs.os == 'windows' && inputs.skip_quick_ci != 'true' }}
shell: powershell
run: |
conda activate gha-comfyui-${{ inputs.python_version }}-${{ inputs.torch_version }}
Expand Down

0 comments on commit 2af1b4c

Please sign in to comment.