From c52a2487aeabd731bf4d895cc13d1ffdf05e459d Mon Sep 17 00:00:00 2001 From: ViperEkura <3081035982@qq.com> Date: Sat, 8 Aug 2026 00:48:43 +0800 Subject: [PATCH] fix: rename CUDA wheels with tag suffix to avoid upload clash - all three release builds (pure, cu128, cu130) produce the same .whl filename, causing uploads to overwrite each other - append the CUDA tag as a local version label (e.g. +cu128, +cu130) --- .github/workflows/release.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 485757d..27b1b17 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -54,6 +54,9 @@ jobs: - name: Build wheel (with CUDA kernels) run: | CSRC_KERNELS=true pip wheel . --no-deps --no-build-isolation -w dist/ + for f in dist/*.whl; do + mv "$f" "dist/$(basename "$f" .whl)+${{ matrix.cuda_tag }}.whl" + done - uses: actions/upload-artifact@v4 with: