Skip to content

Commit

Permalink
Merge pull request #8 from fearnworks/build-process
Browse files Browse the repository at this point in the history
Build Process 
- Add pyproject.toml
- Add workflow to publish to registry 
- Add module folder
  • Loading branch information
fearnworks authored Jul 11, 2024
2 parents 5338618 + 0bf862b commit be894ce
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 1 deletion.
21 changes: 21 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
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:
## Add your own personal access token to your Github Repository secrets and reference it here.
personal_access_token: ${{ secrets.REGISTRY_ACCESS_TOKEN }}
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
__pycache__/
*.pyc
venv
.cursorrules
.env
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[project]
name = "comfyui-fearnworks-nodes"
name = "comfyui_fearnworksnodes"
description = "This extension provides various nodes to support multimodal workflows."
version = "0.1"
license = "Apache 2.0"
Expand Down

0 comments on commit be894ce

Please sign in to comment.