Skip to content

Commit 36b7cdf

Browse files
authored
Merge pull request #1 from ComfyNodePRs/publish
Add Github Action for Publishing to Comfy Registry
2 parents 9affecf + f93a0c9 commit 36b7cdf

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/publish.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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+
permissions:
12+
issues: write
13+
14+
jobs:
15+
publish-node:
16+
name: Publish Custom Node to registry
17+
runs-on: ubuntu-latest
18+
if: ${{ github.repository_owner == 'rainlizard' }}
19+
steps:
20+
- name: Check out code
21+
uses: actions/checkout@v4
22+
with:
23+
submodules: true
24+
- name: Publish Custom Node
25+
uses: Comfy-Org/publish-node-action@v1
26+
with:
27+
## Add your own personal access token to your Github Repository secrets and reference it here.
28+
personal_access_token: ${{ secrets.REGISTRY_ACCESS_TOKEN }}

0 commit comments

Comments
 (0)