-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from blepping/comfyorg_publish
Set up Comfy Registry publishing
- Loading branch information
Showing
2 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: Publish to Comfy registry | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- "pyproject.toml" | ||
|
||
jobs: | ||
publish-node: | ||
name: Publish Custom Node to registry | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v4 | ||
- name: Publish Custom Node | ||
uses: Comfy-Org/publish-node-action@main | ||
with: | ||
personal_access_token: ${{ secrets.COMFYORG_REGISTRY_API_KEY }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
[project] | ||
name = "comfyui_jankhidiffusion" | ||
description = "Janky implementation of HiDiffusion for ComfyUI. Enables generating at resolutions higher than what the model was trained for. Only supports SD 1.x (maybe 2.x) and SDXL." | ||
version = "0.8.0" | ||
license = { file = "LICENSE" } | ||
|
||
[project.urls] | ||
Repository = "https://github.com/blepping/comfyui_jankhidiffusion" | ||
# Used by Comfy Registry https://comfyregistry.org | ||
|
||
[tool.comfy] | ||
PublisherId = "blepping" | ||
DisplayName = "comfyui_jankhidiffusion" | ||
Icon = "" |