From 8e2367f8f0ea210a2cfd093fd13892001e7b2f12 Mon Sep 17 00:00:00 2001 From: Ethanfel Date: Sun, 5 Apr 2026 19:09:40 +0200 Subject: [PATCH] ci: add ComfyUI registry publish workflow Triggers on version tags (v*) using Comfy-Org/publish-node-action. Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/publish.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/publish.yml diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 0000000..f7f8250 --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,16 @@ +name: Publish to ComfyUI Registry + +on: + push: + tags: + - "v*" + +jobs: + publish: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Publish to ComfyUI Registry + uses: Comfy-Org/publish-node-action@main + with: + personal_access_token: ${{ secrets.REGISTRY_ACCESS_TOKEN }}