Skip to content

Commit

Permalink
add corepack enable action before setting up node
Browse files Browse the repository at this point in the history
  • Loading branch information
telamonian committed Aug 30, 2024
1 parent 681b6bf commit 65ff546
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/actions/build/windows/app/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,15 @@ inputs:
runs:
using: composite
steps:
- name: Use Node.js
- name: Enable Corepack
run: corepack enable
shell: cmd
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20
- run: yarn install
node-version: "20.x"
cache: 'yarn'
- run: yarn install --immutable
shell: cmd
- name: Set up Python
uses: actions/setup-python@v4
Expand All @@ -38,9 +42,7 @@ runs:
cd assets
comfy --skip-prompt --workspace ./ComfyUI install --fast-deps --nvidia --cuda-version 12.1
comfy --workspace ./ComfyUI standalone --platform windows --proc x86_64
ls
comfy standalone --rehydrate --platform windows --proc x86_64
./python/python.exe -m pip list
rm -rf ComfyUI python cpython*.tar.gz
shell: cmd
- name: Make app
shell: powershell
Expand Down

0 comments on commit 65ff546

Please sign in to comment.