mirror of
https://git.datalinker.icu/comfyanonymous/ComfyUI
synced 2026-08-15 22:56:49 +08:00
22 lines
501 B
YAML
22 lines
501 B
YAML
name: ComfyUI Registry publish
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- stable
|
|
paths:
|
|
- "pyproject.toml"
|
|
|
|
jobs:
|
|
publish-node:
|
|
name: ComfyUI Registry publish
|
|
runs-on: ubuntu-latest
|
|
if: github.event.repository.fork == false
|
|
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.REGISTRY_ACCESS_TOKEN }}
|