mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-12-15 01:07:03 +08:00
Some checks failed
Build package / Build Test (3.11) (push) Has been cancelled
Python Linting / Run Ruff (push) Has been cancelled
Python Linting / Run Pylint (push) Has been cancelled
Build package / Build Test (3.10) (push) Has been cancelled
Build package / Build Test (3.12) (push) Has been cancelled
Build package / Build Test (3.13) (push) Has been cancelled
Build package / Build Test (3.9) (push) Has been cancelled
Full Comfy CI Workflow Runs / test-stable (12.1, , linux, 3.10, [self-hosted Linux], stable) (push) Has been cancelled
Full Comfy CI Workflow Runs / test-stable (12.1, , linux, 3.11, [self-hosted Linux], stable) (push) Has been cancelled
Full Comfy CI Workflow Runs / test-stable (12.1, , linux, 3.12, [self-hosted Linux], stable) (push) Has been cancelled
Full Comfy CI Workflow Runs / test-unix-nightly (12.1, , linux, 3.11, [self-hosted Linux], nightly) (push) Has been cancelled
Execution Tests / test (macos-latest) (push) Has been cancelled
Execution Tests / test (ubuntu-latest) (push) Has been cancelled
Execution Tests / test (windows-latest) (push) Has been cancelled
Test server launches without errors / test (push) Has been cancelled
Unit Tests / test (macos-latest) (push) Has been cancelled
Unit Tests / test (ubuntu-latest) (push) Has been cancelled
Unit Tests / test (windows-2022) (push) Has been cancelled
Generate Pydantic Stubs from api.comfy.org / generate-models (push) Has been cancelled
79 lines
1.8 KiB
YAML
79 lines
1.8 KiB
YAML
name: "Release Stable All Portable Versions"
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
git_tag:
|
|
description: 'Git tag'
|
|
required: true
|
|
type: string
|
|
|
|
jobs:
|
|
release_nvidia_default:
|
|
permissions:
|
|
contents: "write"
|
|
packages: "write"
|
|
pull-requests: "read"
|
|
name: "Release NVIDIA Default (cu130)"
|
|
uses: ./.github/workflows/stable-release.yml
|
|
with:
|
|
git_tag: ${{ inputs.git_tag }}
|
|
cache_tag: "cu130"
|
|
python_minor: "13"
|
|
python_patch: "9"
|
|
rel_name: "nvidia"
|
|
rel_extra_name: ""
|
|
test_release: true
|
|
secrets: inherit
|
|
|
|
release_nvidia_cu128:
|
|
permissions:
|
|
contents: "write"
|
|
packages: "write"
|
|
pull-requests: "read"
|
|
name: "Release NVIDIA cu128"
|
|
uses: ./.github/workflows/stable-release.yml
|
|
with:
|
|
git_tag: ${{ inputs.git_tag }}
|
|
cache_tag: "cu128"
|
|
python_minor: "12"
|
|
python_patch: "10"
|
|
rel_name: "nvidia"
|
|
rel_extra_name: "_cu128"
|
|
test_release: true
|
|
secrets: inherit
|
|
|
|
release_nvidia_cu126:
|
|
permissions:
|
|
contents: "write"
|
|
packages: "write"
|
|
pull-requests: "read"
|
|
name: "Release NVIDIA cu126"
|
|
uses: ./.github/workflows/stable-release.yml
|
|
with:
|
|
git_tag: ${{ inputs.git_tag }}
|
|
cache_tag: "cu126"
|
|
python_minor: "12"
|
|
python_patch: "10"
|
|
rel_name: "nvidia"
|
|
rel_extra_name: "_cu126"
|
|
test_release: true
|
|
secrets: inherit
|
|
|
|
release_amd_rocm:
|
|
permissions:
|
|
contents: "write"
|
|
packages: "write"
|
|
pull-requests: "read"
|
|
name: "Release AMD ROCm 7.1.1"
|
|
uses: ./.github/workflows/stable-release.yml
|
|
with:
|
|
git_tag: ${{ inputs.git_tag }}
|
|
cache_tag: "rocm711"
|
|
python_minor: "12"
|
|
python_patch: "10"
|
|
rel_name: "amd"
|
|
rel_extra_name: ""
|
|
test_release: false
|
|
secrets: inherit
|