Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion .github/workflows/release-wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand Down
Loading