Skip to content

Commit

Permalink
Merge pull request #19 from blepping/comfyorg_publish
Browse files Browse the repository at this point in the history
Set up Comfy Registry publishing
  • Loading branch information
blepping authored Aug 15, 2024
2 parents 4e8ef65 + 028a831 commit 7548ad6
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/publish.yml
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 }}
14 changes: 14 additions & 0 deletions pyproject.toml
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 = ""

0 comments on commit 7548ad6

Please sign in to comment.