Skip to content

Commit e099386

Browse files
committed
fix: clean up existing whl files
1 parent ffab57d commit e099386

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

.github/workflows/pkg_build.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,9 @@ jobs:
9696
CUDA_VERSION: ${{ matrix.cuda }}
9797
TORCH_VERSION: ${{ matrix.torch }}
9898
steps:
99+
- name: Delete old files
100+
run: rm -rf dist/*
101+
99102
- name: Download wheel
100103
uses: actions/download-artifact@v4
101104
with:

.github/workflows/pkg_test.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,9 @@ jobs:
7777
CUDA_VERSION: ${{ matrix.cuda }}
7878
TORCH_VERSION: ${{ matrix.torch }}
7979
steps:
80+
- name: Delete old files
81+
run: rm -rf dist/*
82+
8083
- name: Download wheel
8184
uses: actions/download-artifact@v4
8285
with:

.github/workflows/publish_pypi.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,9 @@ jobs:
9393
CUDA_VERSION: ${{ matrix.cuda }}
9494
TORCH_VERSION: ${{ matrix.torch }}
9595
steps:
96+
- name: Delete old files
97+
run: rm -rf dist/*
98+
9699
- name: Download wheel
97100
uses: actions/download-artifact@v4
98101
with:

0 commit comments

Comments
 (0)