Update. #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Release" | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
package_comfy_windows: | |
permissions: | |
contents: "write" | |
packages: "write" | |
pull-requests: "read" | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
python_version: [3.11.8, 3.12.8] | |
cuda_version: [118, 122] | |
steps: | |
- name: Calculate Minor Version | |
run: | | |
echo "MINOR_VERSION=$(echo "${{ matrix.python_version }}" | cut -d'.' -f2)" >> $GITHUB_ENV | |
- uses: actions/cache/restore@v3 | |
id: cache | |
with: | |
path: | | |
cu${{ matrix.cuda_version }}_python_deps.tar | |
update_comfyui_and_python_dependencies.bat | |
key: ${{ runner.os }}-build-cu${{ matrix.cuda_version }}-${{ env.MINOR_VERSION }} | |
- shell: bash | |
run: | | |
mv cu${{ matrix.cuda_version }}_python_deps.tar ../ | |
mv update_comfyui_and_python_dependencies.bat ../ | |
cd .. | |
tar xf cu${{ matrix.cuda_version }}_python_deps.tar | |
pwd | |
ls | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- shell: bash | |
run: | | |
cd .. | |
cp -r ComfyUI ComfyUI_copy | |
curl https://www.python.org/ftp/python/${{ matrix.python_version }}/python-3.${{ matrix.python_version }}-embed-amd64.zip -o python_embeded.zip | |
unzip python_embeded.zip -d python_embeded | |
minor_version=$(echo "${{ matrix.python_version }}" | cut -d'.' -f2) | |
cd python_embeded | |
echo 'import site' >> ./python3${{ env.MINOR_VERSION }}._pth | |
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py | |
./python.exe get-pip.py | |
./python.exe -s -m pip install ../cu${{ matrix.cuda_version }}_python_deps/* | |
sed -i '1i../ComfyUI' ./python3${{ env.MINOR_VERSION }}._pth | |
cd .. | |
git clone https://github.com/comfyanonymous/taesd | |
cp taesd/*.pth ./ComfyUI_copy/models/vae_approx/ | |
mkdir ComfyUI_windows_portable | |
mv python_embeded ComfyUI_windows_portable | |
mv ComfyUI_copy ComfyUI_windows_portable/ComfyUI | |
cd ComfyUI_windows_portable | |
mkdir update | |
cp -r ComfyUI/.ci/update_windows/* ./update/ | |
cp -r ComfyUI/.ci/windows_base_files/* ./ | |
cp ../update_comfyui_and_python_dependencies.bat ./update/ | |
cd .. | |
"C:\Program Files\7-Zip\7z.exe" a -t7z -m0=lzma -mx=8 -mfb=64 -md=32m -ms=on -mf=BCJ2 ComfyUI_windows_portable.7z ComfyUI_windows_portable | |
mv ComfyUI_windows_portable.7z ComfyUI/new_ComfyUI_windows_portable_nvidia_cu${{ matrix.cuda_version }}_or_cpu.7z | |
cd ComfyUI_windows_portable | |
python_embeded/python.exe -s ComfyUI/main.py --quick-test-for-ci --cpu | |
ls | |
- name: Upload binaries to release | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: new_ComfyUI_windows_portable_nvidia_cu${{ matrix.cuda_version }}.7z | |
tag: "latest" | |
overwrite: true |