bb1d83578c
Matches the pattern used by the working LoRA Optimizer publish workflow. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
20 lines
398 B
YAML
20 lines
398 B
YAML
name: Publish to ComfyUI Registry
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- "pyproject.toml"
|
|
|
|
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 }}
|