File tree Expand file tree Collapse file tree 1 file changed +14
-11
lines changed Expand file tree Collapse file tree 1 file changed +14
-11
lines changed Original file line number Diff line number Diff line change 28
28
29
29
30
30
31
- - uses : actions/upload-artifact@v3
31
+ - uses : actions/upload-artifact@v4
32
32
with :
33
- name : wheels
33
+ name : wheels-${{ matrix.os }}
34
34
path : ./wheelhouse
35
35
36
36
build_sdist :
@@ -52,22 +52,24 @@ jobs:
52
52
- name : test install
53
53
run : pip install dist/numcodecs*.tar.gz
54
54
55
- - uses : actions/upload-artifact@v3
55
+ - uses : actions/upload-artifact@v4
56
56
with :
57
+ name : sdist
57
58
path : dist/*.tar.gz
58
59
59
60
test_dist_pypi :
60
61
needs : [build_wheels, build_sdist]
61
62
runs-on : ubuntu-latest
62
63
steps :
63
- - uses : actions/download-artifact@v3
64
+ - uses : actions/download-artifact@v4
64
65
with :
65
- name : artifact
66
+ name : sdist
66
67
path : dist
67
- - uses : actions/download-artifact@v3
68
+ - uses : actions/download-artifact@v4
68
69
with :
69
- name : wheels
70
+ pattern : wheels-*
70
71
path : dist
72
+ merge-multiple : true
71
73
72
74
- name : test
73
75
run : |
@@ -79,14 +81,15 @@ jobs:
79
81
runs-on : ubuntu-latest
80
82
if : github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v')
81
83
steps :
82
- - uses : actions/download-artifact@v3
84
+ - uses : actions/download-artifact@v4
83
85
with :
84
- name : artifact
86
+ name : sdist
85
87
path : dist
86
- - uses : actions/download-artifact@v3
88
+ - uses : actions/download-artifact@v4
87
89
with :
88
- name : wheels
90
+ pattern : wheels-*
89
91
path : dist
92
+ merge-multiple : true
90
93
91
94
- uses : pypa/gh-action-pypi-publish@master
92
95
with :
You can’t perform that action at this time.
0 commit comments