Build & Upload pt24-cu121-trellis Package #2
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: "Build & Upload pt24-cu121-trellis 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: pt24-cu121-trellis | |
run: bash stage1.sh | |
- name: Stage 2 Assembling Repositories | |
shell: bash | |
working-directory: pt24-cu121-trellis | |
run: bash stage2.sh | |
- name: Stage 3 Compressing Package | |
shell: bash | |
working-directory: pt24-cu121-trellis | |
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: "pt24-cu121-trellis/Comfy3D_WinPortable.7z*" | |
# Always draft before release. | |
draft: true | |
overwrite: true |