File tree 1 file changed +6
-4
lines changed
1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change 67
67
68
68
69
69
- name : Upload wheels
70
- uses : actions/upload-artifact@v3
70
+ uses : actions/upload-artifact@v4
71
71
with :
72
+ name : wheels-${{ matrix.runs-on }}
72
73
path : ./wheelhouse/*.whl
73
74
74
75
99
100
- name : Upload sdist package
100
101
uses : actions/upload-artifact@v4
101
102
with :
103
+ name : wheels-source
102
104
path : dist/*.tar.gz
103
105
104
106
- name : Build building extension from sdist package
@@ -120,10 +122,10 @@ jobs:
120
122
# Only upload wheels when tagging (typically a release)
121
123
if : startsWith(github.event.ref, 'refs/tags')
122
124
steps :
123
- - uses : actions/download-artifact@v3
125
+ - uses : actions/download-artifact@v4
124
126
with :
125
- name : artifact
126
- path : dist
127
+ pattern : wheels-* # Download the wheels artifact
128
+ merge-multiple : true # Merge all the wheels artifacts into one directory
127
129
128
130
- uses : pypa/gh-action-pypi-publish@release/v1
129
131
with :
You can’t perform that action at this time.
0 commit comments