You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
795 B
35 lines
795 B
name: "Windows Release" |
|
|
|
on: |
|
workflow_dispatch: |
|
# push: |
|
# branches: |
|
# - master |
|
|
|
jobs: |
|
build: |
|
permissions: |
|
contents: "write" |
|
packages: "write" |
|
pull-requests: "read" |
|
runs-on: windows-latest |
|
steps: |
|
- uses: actions/checkout@v3 |
|
with: |
|
fetch-depth: 0 |
|
|
|
- run: | |
|
cd .. |
|
cp ComfyUI/.ci/setup_windows_zip.ps1 ./ |
|
cp -r ComfyUI ComfyUI_copy |
|
.\setup_windows_zip.ps1 |
|
ls |
|
|
|
- name: Upload binaries to release |
|
uses: svenstaro/upload-release-action@v2 |
|
with: |
|
repo_token: ${{ secrets.GITHUB_TOKEN }} |
|
file: ComfyUI_windows_portable_nvidia_or_cpu.7z |
|
tag: "latest" |
|
overwrite: true |
|
|
|
|