Skip to content

Commit c89dac3

Browse files
committed
Comfy-Registry publish action
1 parent 9368fe1 commit c89dac3

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "comfyui-remotevae"
33
version = "1.0.0"
4-
description = "ComfyUI Node for Remote VAE Decoding."
4+
description = "ComfyUI Nodes for Remote VAE Decoding."
55
license = { file = "LICENSE" }
66
requires-python = ">=3.10"
77
classifiers = [

0 commit comments

Comments
 (0)