File tree Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change 3939
4040 - uses : actions/upload-artifact@v4
4141 with :
42+ name : wheels
4243 path : ./wheelhouse/*.whl
4344
44- build_arm64_wheels :
45+ build_wheels_arm64 :
4546 name : Build arm64 wheels
4647 runs-on : ubuntu-latest
4748 steps :
6768 - name : Upload wheels as artifacts
6869 uses : actions/upload-artifact@v4
6970 with :
71+ name : wheels_arm64
7072 path : ./wheelhouse/*.whl
7173
7274 build_sdist :
@@ -89,18 +91,25 @@ jobs:
8991 python -m build --sdist
9092 - uses : actions/upload-artifact@v4
9193 with :
94+ name : sdist
9295 path : ./dist/*.tar.gz
9396
9497 release :
9598 name : Release
96- needs : [build_wheels, build_arm64_wheels , build_sdist]
99+ needs : [build_wheels, build_wheels_arm64 , build_sdist]
97100 runs-on : ubuntu-latest
98101
99102 steps :
103+ - name : Merge Artifacts
104+ uses : actions/upload-artifact/merge@v4
105+ with :
106+ name : release
107+
100108 - uses : actions/download-artifact@v3
101109 with :
102- name : artifact
110+ name : release
103111 path : dist
112+
104113 - uses : softprops/action-gh-release@v2
105114 with :
106115 files : dist/*
You can’t perform that action at this time.
0 commit comments