From fb6aa11fc30631cc35e5b3063c75ade79b36d07e Mon Sep 17 00:00:00 2001 From: AlpinDale Date: Fri, 31 Jul 2026 08:25:16 +0430 Subject: [PATCH] fix(release): attach all wheels to GitHub releases Signed-off-by: AlpinDale --- .github/workflows/release-wheel.yml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-wheel.yml b/.github/workflows/release-wheel.yml index b2d4f6eb56..ea73d0050b 100644 --- a/.github/workflows/release-wheel.yml +++ b/.github/workflows/release-wheel.yml @@ -60,6 +60,13 @@ jobs: --check-url https://pypi.org/simple/aphrodite-engine/ \ wheels/main/*.whl + - name: Upload CUDA wheel + uses: actions/upload-artifact@v4 + with: + name: cuda-x86_64 + path: wheels/main/*.whl + if-no-files-found: error + - name: Create GitHub release uses: softprops/action-gh-release@v2 with: @@ -275,6 +282,12 @@ jobs: with: ref: ${{ github.ref }} + - name: Download CUDA wheel + uses: actions/download-artifact@v4 + with: + name: cuda-x86_64 + path: platform-wheels/cuda-x86_64 + - name: Download CPU wheels uses: actions/download-artifact@v4 with: @@ -310,7 +323,7 @@ jobs: .github/scripts/publish_platform_wheels.sh \ platform-wheels/rocm-x86_64 release rocm x86_64 page-index - - name: Attach platform wheels to GitHub release + - name: Attach all wheels to GitHub release env: GH_TOKEN: ${{ github.token }} run: gh release upload "$GITHUB_REF_NAME" platform-wheels/*/*.whl --clobber