File tree 1 file changed +14
-3
lines changed
1 file changed +14
-3
lines changed Original file line number Diff line number Diff line change 42
42
43
43
- uses : actions/upload-artifact@v4
44
44
with :
45
+ name : artifact-wheel-${{ matrix.os }}
45
46
path : wheelhouse/*.whl
46
- overwrite : true
47
47
48
48
make_sdist :
49
49
runs-on : " ubuntu-latest"
@@ -54,11 +54,22 @@ jobs:
54
54
python -m build --no-isolation --sdist
55
55
- uses : actions/upload-artifact@v4
56
56
with :
57
+ name : artifact-sdist
57
58
path : dist/*.tar.gz
58
- overwrite : true
59
59
60
- upload_all :
60
+ merge :
61
+ runs-on : ubuntu-latest
61
62
needs : [build_wheels, make_sdist]
63
+ steps :
64
+ - name : Merge Artifacts
65
+ uses : actions/upload-artifact/merge@v4
66
+ with :
67
+ name : artifact
68
+ pattern : artifact-*
69
+ delete-merged : true
70
+
71
+ upload_all :
72
+ needs : merge
62
73
runs-on : " ubuntu-latest"
63
74
environment : release
64
75
if : github.event_name == 'release' && github.event.action == 'published'
You can’t perform that action at this time.
0 commit comments