Skip to content

Commit 6a7e6b3

Browse files
committed
fix: fix python github action
Signed-off-by: zongz <[email protected]>
1 parent 4b30baa commit 6a7e6b3

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/python-test.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- name: Upload sdist
4040
uses: actions/upload-artifact@v4
4141
with:
42-
name: wheels
42+
name: wheels-${{ github.run_id }}
4343
path: python/dist
4444

4545
linux:
@@ -59,10 +59,10 @@ jobs:
5959
env:
6060
# Workaround ring 0.17 build issue
6161
CFLAGS_aarch64_unknown_linux_gnu: "-D__ARM_ARCH=8"
62-
- name: Upload wheels
62+
- name: Upload wheels-${{ github.run_id }}
6363
uses: actions/upload-artifact@v4
6464
with:
65-
name: wheels
65+
name: wheels-${{ github.run_id }}
6666
path: python/dist
6767

6868
windows:
@@ -74,10 +74,10 @@ jobs:
7474
working-directory: "python"
7575
command: build
7676
args: --release -o dist --find-interpreter
77-
- name: Upload wheels
77+
- name: Upload wheels-${{ github.run_id }}
7878
uses: actions/upload-artifact@v4
7979
with:
80-
name: wheels
80+
name: wheels-${{ github.run_id }}
8181
path: python/dist
8282

8383
macos:
@@ -90,10 +90,10 @@ jobs:
9090
command: build
9191
target: universal2-apple-darwin
9292
args: --release -o dist --find-interpreter
93-
- name: Upload wheels
93+
- name: Upload wheels-${{ github.run_id }}
9494
uses: actions/upload-artifact@v4
9595
with:
96-
name: wheels
96+
name: wheels-${{ github.run_id }}
9797
path: python/dist
9898

9999
release:

0 commit comments

Comments
 (0)