mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-07 00:20:07 +00:00
refactor: rename not_build to skip_build in setup-frontend action
Improves clarity by using positive naming convention for the parameter. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
6
.github/actions/setup-frontend/action.yml
vendored
6
.github/actions/setup-frontend/action.yml
vendored
@@ -1,7 +1,7 @@
|
||||
name: Build ComfyUI Frontend
|
||||
description: 'Install dependencies and build ComfyUI_frontend'
|
||||
inputs:
|
||||
not_build:
|
||||
skip_build:
|
||||
description: 'Skip building the frontend'
|
||||
required: false
|
||||
default: 'false'
|
||||
@@ -39,7 +39,7 @@ runs:
|
||||
shell: bash
|
||||
run: pnpm install --frozen-lockfile
|
||||
|
||||
- name: Build ComfyUI_frontend if needed
|
||||
if: ${{ inputs.not_build != 'true' }}
|
||||
- name: Build ComfyUI_frontend
|
||||
if: ${{ inputs.skip_build != 'true' }}
|
||||
shell: bash
|
||||
run: pnpm build
|
||||
|
||||
Reference in New Issue
Block a user