Skip to content

Commit e2b8c86

Browse files
committed
First commit to comfy registry.
1 parent 7911038 commit e2b8c86

File tree

3 files changed

+24
-3
lines changed

3 files changed

+24
-3
lines changed

.github/workflows/publish.yml

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

__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
from .F5TTS import F5TTSAudio
2+
from .F5TTS import F5TTSAudio
33

44
NODE_CLASS_MAPPINGS = {
55
"F5TTSAudio": F5TTSAudio

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "ComfyUI-F5-TTS"
33
description = "Text to speech with F5-TTS"
4-
version = "1.0.0"
4+
version = "1.0.1"
55
license = {text = "MIT License"}
66

77
[project.urls]
@@ -10,5 +10,5 @@ Repository = "https://github.com/niknah/ComfyUI-F5-TTS"
1010

1111
[tool.comfy]
1212
PublisherId = "niknah"
13-
DisplayName = "COmfyUI-F5-TTS"
13+
DisplayName = "ComfyUI-F5-TTS"
1414
Icon = ""

0 commit comments

Comments
 (0)