mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-28 02:34:10 +00:00
ci: invert frontend build flag
This commit is contained in:
8
.github/actions/setup-frontend/action.yml
vendored
8
.github/actions/setup-frontend/action.yml
vendored
@@ -1,10 +1,10 @@
|
||||
name: Build ComfyUI Frontend
|
||||
description: 'Install dependencies and build ComfyUI_frontend'
|
||||
inputs:
|
||||
build_frontend:
|
||||
description: 'Whether to build the frontend'
|
||||
not_build:
|
||||
description: 'Skip building the frontend'
|
||||
required: false
|
||||
default: 'true'
|
||||
default: 'false'
|
||||
runs:
|
||||
using: 'composite'
|
||||
steps:
|
||||
@@ -40,6 +40,6 @@ runs:
|
||||
run: pnpm install --frozen-lockfile
|
||||
|
||||
- name: Build ComfyUI_frontend if needed
|
||||
if: ${{ inputs.build_frontend == 'true' }}
|
||||
if: ${{ inputs.not_build != 'true' }}
|
||||
shell: bash
|
||||
run: pnpm build
|
||||
|
||||
Reference in New Issue
Block a user