We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 35e10f5 + e10c857 commit 976f106Copy full SHA for 976f106
.github/workflows/publish.yml
@@ -0,0 +1,22 @@
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
+ steps:
16
+ - name: Check out code
17
+ uses: actions/checkout@v4
18
+ - name: Publish Custom Node
19
+ uses: Comfy-Org/publish-node-action@main
20
+ with:
21
+ ## Add your own personal access token to your Github Repository secrets and reference it here.
22
+ personal_access_token: ${{ secrets.REGISTRY_ACCESS_TOKEN }}
0 commit comments