File tree 1 file changed +12
-3
lines changed
1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change 39
39
40
40
- uses : actions/upload-artifact@v4
41
41
with :
42
+ name : wheels
42
43
path : ./wheelhouse/*.whl
43
44
44
- build_arm64_wheels :
45
+ build_wheels_arm64 :
45
46
name : Build arm64 wheels
46
47
runs-on : ubuntu-latest
47
48
steps :
67
68
- name : Upload wheels as artifacts
68
69
uses : actions/upload-artifact@v4
69
70
with :
71
+ name : wheels_arm64
70
72
path : ./wheelhouse/*.whl
71
73
72
74
build_sdist :
@@ -89,18 +91,25 @@ jobs:
89
91
python -m build --sdist
90
92
- uses : actions/upload-artifact@v4
91
93
with :
94
+ name : sdist
92
95
path : ./dist/*.tar.gz
93
96
94
97
release :
95
98
name : Release
96
- needs : [build_wheels, build_arm64_wheels , build_sdist]
99
+ needs : [build_wheels, build_wheels_arm64 , build_sdist]
97
100
runs-on : ubuntu-latest
98
101
99
102
steps :
103
+ - name : Merge Artifacts
104
+ uses : actions/upload-artifact/merge@v4
105
+ with :
106
+ name : release
107
+
100
108
- uses : actions/download-artifact@v3
101
109
with :
102
- name : artifact
110
+ name : release
103
111
path : dist
112
+
104
113
- uses : softprops/action-gh-release@v2
105
114
with :
106
115
files : dist/*
You can’t perform that action at this time.
0 commit comments