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 2828
29293030
31- - uses : actions/upload-artifact@v3
31+ - uses : actions/upload-artifact@v4
3232 with :
33- name : wheels
33+ name : wheels-${{ matrix.os }}
3434 path : ./wheelhouse
3535
3636 build_sdist :
@@ -52,22 +52,24 @@ jobs:
5252 - name : test install
5353 run : pip install dist/numcodecs*.tar.gz
5454
55- - uses : actions/upload-artifact@v3
55+ - uses : actions/upload-artifact@v4
5656 with :
57+ name : sdist
5758 path : dist/*.tar.gz
5859
5960 test_dist_pypi :
6061 needs : [build_wheels, build_sdist]
6162 runs-on : ubuntu-latest
6263 steps :
63- - uses : actions/download-artifact@v3
64+ - uses : actions/download-artifact@v4
6465 with :
65- name : artifact
66+ name : sdist
6667 path : dist
67- - uses : actions/download-artifact@v3
68+ - uses : actions/download-artifact@v4
6869 with :
69- name : wheels
70+ pattern : wheels-*
7071 path : dist
72+ merge-multiple : true
7173
7274 - name : test
7375 run : |
@@ -79,14 +81,15 @@ jobs:
7981 runs-on : ubuntu-latest
8082 if : github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v')
8183 steps :
82- - uses : actions/download-artifact@v3
84+ - uses : actions/download-artifact@v4
8385 with :
84- name : artifact
86+ name : sdist
8587 path : dist
86- - uses : actions/download-artifact@v3
88+ - uses : actions/download-artifact@v4
8789 with :
88- name : wheels
90+ pattern : wheels-*
8991 path : dist
92+ merge-multiple : true
9093
9194 - uses : pypa/gh-action-pypi-publish@master
9295 with :
You can’t perform that action at this time.
0 commit comments