File tree Expand file tree Collapse file tree 2 files changed +11
-12
lines changed Expand file tree Collapse file tree 2 files changed +11
-12
lines changed Original file line number Diff line number Diff line change 26
26
- name : Upload wheels
27
27
uses : actions/upload-artifact@v4
28
28
with :
29
- name : wheels
29
+ name : wheels-linux
30
30
path : dist
31
31
32
32
# Docker with Apple Silicon
47
47
- name : Upload wheels
48
48
uses : actions/upload-artifact@v4
49
49
with :
50
- name : wheels
50
+ name : wheels-manylinux-aarch64
51
51
path : dist
52
52
53
53
# ARM7
69
69
- name : Upload wheels
70
70
uses : actions/upload-artifact@v4
71
71
with :
72
- name : wheels
72
+ name : wheels-armv7
73
73
path : dist
74
74
75
75
musllinux-x86_64 :
90
90
- name : Upload wheels
91
91
uses : actions/upload-artifact@v4
92
92
with :
93
- name : wheels
93
+ name : wheels-musllinux-x86_64
94
94
path : dist
95
95
96
96
musllinux-aarch64 :
@@ -111,7 +111,7 @@ jobs:
111
111
- name : Upload wheels
112
112
uses : actions/upload-artifact@v4
113
113
with :
114
- name : wheels
114
+ name : wheels-musllinux-aarch64
115
115
path : dist
116
116
117
117
windows :
@@ -130,7 +130,7 @@ jobs:
130
130
- name : Upload wheels
131
131
uses : actions/upload-artifact@v4
132
132
with :
133
- name : wheels
133
+ name : wheels-windows
134
134
path : dist
135
135
136
136
macos :
@@ -149,7 +149,7 @@ jobs:
149
149
- name : Upload wheels
150
150
uses : actions/upload-artifact@v4
151
151
with :
152
- name : wheels
152
+ name : wheels-macos
153
153
path : dist
154
154
155
155
release :
@@ -169,7 +169,7 @@ jobs:
169
169
steps :
170
170
- uses : actions/download-artifact@v4
171
171
with :
172
- name : wheels
172
+ pattern : wheels*
173
173
- name : Publish to PyPI
174
174
uses : messense/maturin-action@v1
175
175
env :
Original file line number Diff line number Diff line change 75
75
- name : Upload artifact
76
76
uses : actions/upload-artifact@v4
77
77
with :
78
- name : " benchmark_result_as_md "
78
+ name : " benchmark_result_as_md_${{ matrix.python-version }}_${{ matrix.os }} "
79
79
path : ${{ steps.gen-benchmark-file-name.outputs.filename }}
80
80
81
81
Report :
85
85
- name : Download a Build Artifact
86
86
uses : actions/download-artifact@v4
87
87
with :
88
- name : " benchmark_result_as_md"
89
- path : " "
88
+ pattern : " benchmark_result_as_md*"
90
89
91
- - run : cat tzfpy_benchmark_ *.md > $GITHUB_STEP_SUMMARY
90
+ - run : find . -name " *.md" -exec cat {} \; > $GITHUB_STEP_SUMMARY
You can’t perform that action at this time.
0 commit comments