This commit is contained in:
Chenlei Hu
2025-02-28 13:29:43 -05:00
committed by GitHub
parent c10d25acaf
commit 597aaec234
3 changed files with 6 additions and 4 deletions

View File

@@ -81,7 +81,9 @@ jobs:
- name: Install build dependencies
run: python -m pip install build
- name: Setup pypi package
run: cp -r dist/* comfyui_frontend_package/comfyui_frontend/static/
run: |
mkdir -p comfyui_frontend_package/comfyui_frontend/static/
cp -r dist/* comfyui_frontend_package/comfyui_frontend/static/
- name: Build pypi package
run: python -m build
working-directory: comfyui_frontend_package