Skip to content

Commit 9ee1322

Browse files
committed
Update.
1 parent ea38fd3 commit 9ee1322

File tree

1 file changed

+2
-14
lines changed

1 file changed

+2
-14
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -27,22 +27,12 @@ jobs:
2727
run: |
2828
echo "MINOR_VERSION=$(echo "${{ matrix.python_version }}" | cut -d'.' -f2)" >> $GITHUB_ENV
2929
30-
- uses: actions/cache@v4
31-
id: cache
32-
with:
33-
path: |
34-
cu${{ matrix.cuda_version }}_python_deps.tar
35-
update_comfyui_and_python_dependencies.bat
36-
key: ${{ runner.os }}-build-cu${{ matrix.cuda_version }}-${{ matrix.python_version }}
37-
save-always: true
38-
3930
- name: Setup Python
4031
uses: actions/setup-python@v4
4132
with:
4233
python-version: ${{ matrix.python_version }}
4334

4435
- name: Update Windows Dependencies
45-
if: steps.cache.outputs.cache-hit != 'true'
4636
shell: bash
4737
run: |
4838
echo "@echo off
@@ -61,14 +51,12 @@ jobs:
6151
echo installed basic
6252
ls -lah temp_wheel_dir
6353
mv temp_wheel_dir cu${{ matrix.cuda_version }}_python_deps
64-
tar cf cu${{ matrix.cuda_version }}_python_deps.tar cu${{ matrix.cuda_version }}_python_deps
6554
6655
- shell: bash
6756
run: |
68-
mv cu${{ matrix.cuda_version }}_python_deps.tar ../
57+
mv cu${{ matrix.cuda_version }}_python_deps ../
6958
mv update_comfyui_and_python_dependencies.bat ../
7059
cd ..
71-
tar xf cu${{ matrix.cuda_version }}_python_deps.tar
7260
pwd
7361
ls
7462
@@ -82,10 +70,10 @@ jobs:
8270
unzip python_embeded.zip -d python_embeded
8371
minor_version=$(echo "${{ matrix.python_version }}" | cut -d'.' -f2)
8472
cd python_embeded
73+
ls
8574
echo 'import site' >> ./python3${{ env.MINOR_VERSION }}._pth
8675
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
8776
./python.exe get-pip.py
88-
export PATH=$PWD/Scripts:$PATH
8977
./python.exe -s -m pip install ../cu${{ matrix.cuda_version }}_python_deps/*
9078
sed -i '1i../ComfyUI' ./python3${{ env.MINOR_VERSION }}._pth
9179
cd ..

0 commit comments

Comments
 (0)