Skip to content

Commit 153ab56

Browse files
committed
Publish
1 parent 7b48cd3 commit 153ab56

File tree

2 files changed

+38
-0
lines changed

2 files changed

+38
-0
lines changed

.github/workflows/publish.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Publish to Comfy registry
2+
on:
3+
workflow_dispatch:
4+
push:
5+
branches:
6+
- main
7+
- master
8+
paths:
9+
- "pyproject.toml"
10+
11+
jobs:
12+
publish-node:
13+
name: Publish Custom Node to registry
14+
runs-on: ubuntu-latest
15+
# if this is a forked repository. Skipping the workflow.
16+
if: github.event.repository.fork == false
17+
steps:
18+
- name: Check out code
19+
uses: actions/checkout@v4
20+
- name: Publish Custom Node
21+
uses: Comfy-Org/publish-node-action@main
22+
with:
23+
## Add your own personal access token to your Github Repository secrets and reference it here.
24+
personal_access_token: ${{ secrets.REGISTRY_ACCESS_TOKEN }}

pyproject.toml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
[project]
2+
name = "comfyui-anidoc"
3+
description = "ComfyUI Custom Nodes for 'AniDoc: Animation Creation Made Easier'. This approach automates line art video colorization using a novel model that aligns color information from references, ensures temporal consistency, and reduces manual effort in animation production."
4+
version = "1.0.0"
5+
license = {file = "LICENSE"}
6+
dependencies = ["diffusers==0.24.0", "huggingface_hub==0.25.2", "Pillow", "accelerate", "omegaconf", "opencv-python", "einops", "kornia", "git+https://github.com/XPixelGroup/BasicSR.git"]
7+
8+
[project.urls]
9+
Repository = "https://github.com/LucipherDev/ComfyUI-AniDoc"
10+
# Used by Comfy Registry https://comfyregistry.org
11+
12+
[tool.comfy]
13+
PublisherId = "lucipherdev"
14+
DisplayName = "ComfyUI-AniDoc"

0 commit comments

Comments
 (0)