Use Custom Runner Target To Test ComfyUI Windows with Default Workflow #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Use Custom Runner Target To Test ComfyUI Windows with Default Workflow | ||
on: workflow_dispatch | ||
inputs: | ||
Check failure on line 3 in .github/workflows/test-workflows-windows-custom.yaml GitHub Actions / Use Custom Runner Target To Test ComfyUI Windows with Default WorkflowInvalid workflow file
|
||
runs_on: | ||
description: 'What runners to run this test on' | ||
required: false | ||
default: 'win' | ||
jobs: | ||
test-action: | ||
runs-on: $INPUT_RUNS_ON | ||
steps: | ||
- name: Use ComfyUI GitHub Action | ||
uses: comfy-org/comfy-action@main | ||
with: | ||
os: windows | ||
cuda_version: 12.1 | ||
workflow_name: "default-workflow" | ||
models-json: '{"v1-5-pruned-emaonly.ckpt": {"url": "https://huggingface.co/runwayml/stable-diffusion-v1-5/resolve/main/v1-5-pruned-emaonly.safetensors?download=true", "directory": "checkpoints"}}' | ||
workflow_json_path: '.github/workflows/json_examples/workflow_api.json' | ||
gcs_bucket_name: 'comfy-ci-results' | ||
google_credentials: ${{ secrets.GCS_SERVICE_ACCOUNT_JSON }} | ||
output_prefix: 'ComfyUI' | ||
timeout: 50 |