From d09a6ddbc4feb3290e376ec42e46e8cbe331315e Mon Sep 17 00:00:00 2001 From: YAN Wenkun Date: Tue, 10 Dec 2024 09:14:44 +0800 Subject: [PATCH] ci files --- .github/workflows/build-no-3d.yml | 41 ------------------------------- .github/workflows/build.yml | 5 +++- 2 files changed, 4 insertions(+), 42 deletions(-) delete mode 100644 .github/workflows/build-no-3d.yml diff --git a/.github/workflows/build-no-3d.yml b/.github/workflows/build-no-3d.yml deleted file mode 100644 index 7223dc8..0000000 --- a/.github/workflows/build-no-3d.yml +++ /dev/null @@ -1,41 +0,0 @@ -name: "Build & Upload No-3D 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: no-3d - run: bash stage1.sh - - - name: Stage 2 Assembling Repositories - shell: bash - working-directory: no-3d - run: bash stage2.sh - - - name: Stage 3 Compressing Package - shell: cmd - working-directory: no-3d - run: stage3.bat - - - name: Upload archive to release - uses: xresloader/upload-to-github-release@v1 - env: - # This is a always-on token when you run GitHub Actions - # You don't need to cofigure it - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - file: "no-3d/ComfyUI_Windows_portable_cu124.7z*" - # always draft before release - draft: true - overwrite: true diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index efc3a15..558ff93 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,14 +15,17 @@ jobs: - name: Stage 1 Gathering Dependencies shell: bash + working-directory: builder run: bash stage1.sh - name: Stage 2 Assembling Repositories shell: bash + working-directory: builder run: bash stage2.sh - name: Stage 3 Compressing Package shell: cmd + working-directory: builder run: stage3.bat - name: Upload archive to release @@ -32,7 +35,7 @@ jobs: # You don't need to cofigure it GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - file: "ComfyUI_Windows_portable_cu124.7z*" + file: "builder/ComfyUI_Windows_portable_cu124.7z*" # always draft before release draft: true overwrite: true