Skip to content

Commit b78dd90

Browse files
slahiriclaude
andcommitted
Add pyproject.toml and GitHub Actions for ComfyUI Registry
- Add pyproject.toml with all required metadata for ComfyUI Registry - Add GitHub Actions workflow for automatic publishing on pyproject.toml changes - Publisher: slahiri - Version: 1.7.0 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent c8f71ab commit b78dd90

File tree

2 files changed

+43
-0
lines changed

2 files changed

+43
-0
lines changed

.github/workflows/publish.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Publish to Comfy Registry
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches:
7+
- main
8+
paths:
9+
- "pyproject.toml"
10+
11+
jobs:
12+
publish-node:
13+
name: Publish Custom Node to Registry
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Checkout repository
17+
uses: actions/checkout@v4
18+
19+
- name: Publish to Comfy Registry
20+
uses: Comfy-Org/publish-node-action@main
21+
with:
22+
personal_access_token: ${{ secrets.REGISTRY_ACCESS_TOKEN }}

pyproject.toml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
[project]
2+
name = "comfyui-workflow-models-downloader"
3+
description = "Scan workflows for required models and download them automatically from HuggingFace, CivitAI, and other sources. Features include filter dropdowns, Tavily AI-powered advanced search, metadata caching, and automatic URL restoration."
4+
version = "1.7.0"
5+
license = { file = "LICENSE" }
6+
readme = "README.md"
7+
requires-python = ">=3.9"
8+
dependencies = [
9+
"requests",
10+
"huggingface_hub",
11+
]
12+
13+
[project.urls]
14+
Repository = "https://github.com/slahiri/ComfyUI-Workflow-Models-Downloader"
15+
Documentation = "https://github.com/slahiri/ComfyUI-Workflow-Models-Downloader#readme"
16+
"Bug Tracker" = "https://github.com/slahiri/ComfyUI-Workflow-Models-Downloader/issues"
17+
18+
[tool.comfy]
19+
PublisherId = "slahiri"
20+
DisplayName = "Workflow Models Downloader"
21+
Icon = "https://raw.githubusercontent.com/slahiri/ComfyUI-Workflow-Models-Downloader/main/screenshot.png"

0 commit comments

Comments
 (0)