Revert changes in test workflows

This commit is contained in:
Benjamin Lu 2025-12-15 22:06:18 -08:00
parent 29938f760f
commit 7cf8d9e875
2 changed files with 3 additions and 16 deletions

View File

@ -9,12 +9,6 @@ on:
type: string
default: "129"
release_tag:
description: 'Git tag to attach nightly package (e.g., v0.37.0); leave empty to upload to latest'
required: false
type: string
default: ""
python_minor:
description: 'python minor version'
required: true
@ -40,7 +34,6 @@ jobs:
steps:
- uses: actions/checkout@v4
with:
ref: ${{ inputs.release_tag || 'master' }}
fetch-depth: 30
persist-credentials: false
- uses: actions/setup-python@v5
@ -96,5 +89,5 @@ jobs:
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ComfyUI_windows_portable_nvidia_or_cpu_nightly_pytorch.7z
tag: ${{ inputs.release_tag || 'latest' }}
tag: "latest"
overwrite: true

View File

@ -9,12 +9,6 @@ on:
type: string
default: "129"
release_tag:
description: 'Git tag to package and attach (e.g., v0.37.0); leave empty to build from master and upload to latest'
required: false
type: string
default: ""
python_minor:
description: 'python minor version'
required: true
@ -56,7 +50,6 @@ jobs:
- uses: actions/checkout@v4
with:
ref: ${{ inputs.release_tag || 'master' }}
fetch-depth: 150
persist-credentials: false
- shell: bash
@ -108,5 +101,6 @@ jobs:
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: new_ComfyUI_windows_portable_nvidia_cu${{ inputs.cu }}_or_cpu.7z
tag: ${{ inputs.release_tag || 'latest' }}
tag: "latest"
overwrite: true