-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
47 additions
and
7 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: "Build & Upload pt23-cu121 Package" | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build_upload: | ||
permissions: | ||
contents: "write" | ||
packages: "write" | ||
pull-requests: "read" | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Stage 1 Gathering Dependencies | ||
shell: bash | ||
working-directory: pt23-cu121 | ||
run: bash stage1.sh | ||
|
||
- name: Stage 2 Assembling Repositories | ||
shell: bash | ||
working-directory: pt23-cu121 | ||
run: bash stage2.sh | ||
|
||
- name: Stage 3 Compressing Package | ||
shell: bash | ||
working-directory: pt23-cu121 | ||
run: bash stage3.sh | ||
|
||
- name: Upload archive to release | ||
uses: xresloader/upload-to-github-release@v1 | ||
env: | ||
# You don't need to configure this token. It'll be auto-set when GitHub Actions start. | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
file: "pt23-cu121/Comfy3D_WinPortable.7z*" | ||
# Always draft before release. | ||
draft: true | ||
overwrite: true |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
--index-url https://download.pytorch.org/whl/cu118 | ||
--index-url https://download.pytorch.org/whl/cu121 | ||
--extra-index-url https://pypi.org/simple | ||
xformers==0.0.23.post1 | ||
torch==2.1.2 | ||
torchvision==0.16.2 | ||
torchaudio==2.1.2 | ||
xformers==0.0.27 | ||
torch==2.3.1 | ||
torchvision==0.18.1 | ||
torchaudio==2.3.1 |
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
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