File tree Expand file tree Collapse file tree 1 file changed +17
-10
lines changed Expand file tree Collapse file tree 1 file changed +17
-10
lines changed Original file line number Diff line number Diff line change 3131 sccache : ' true'
3232 manylinux : auto
3333 - name : Upload wheels
34- uses : actions/upload-artifact@v3
34+ uses : actions/upload-artifact@v4
3535 with :
36- name : wheels
36+ name : wheels-linux-${{ matrix.target }}
3737 path : dist
3838
3939 macos-x86_64 :
5656 args : --release --out dist --find-interpreter
5757 sccache : ' true'
5858 - name : Upload wheels
59- uses : actions/upload-artifact@v3
59+ uses : actions/upload-artifact@v4
6060 with :
61- name : wheels
61+ name : wheels-macos-x86_64
6262 path : dist
6363
6464 macos-arm64 :
8181 args : --release --out dist --find-interpreter
8282 sccache : ' true'
8383 - name : Upload wheels
84- uses : actions/upload-artifact@v3
84+ uses : actions/upload-artifact@v4
8585 with :
86- name : wheels
86+ name : wheels-macos-arm64
8787 path : dist
8888
8989 sdist :
9696 command : sdist
9797 args : --out dist
9898 - name : Upload sdist
99- uses : actions/upload-artifact@v3
99+ uses : actions/upload-artifact@v4
100100 with :
101- name : wheels
101+ name : sdist
102102 path : dist
103103
104104 release :
@@ -107,13 +107,20 @@ jobs:
107107 if : " startsWith(github.ref, 'refs/tags/')"
108108 needs : [linux, macos-arm64, macos-x86_64, sdist]
109109 steps :
110- - uses : actions/download-artifact@v3
110+ - uses : actions/download-artifact@v4
111111 with :
112- name : wheels
112+ pattern : wheels-*
113+ path : dist
114+ merge-multiple : true
115+ - uses : actions/download-artifact@v4
116+ with :
117+ name : sdist
118+ path : dist
113119 - name : Publish to PyPI
114120 uses : PyO3/maturin-action@v1
115121 env :
116122 MATURIN_PYPI_TOKEN : ${{ secrets.PYPI_API_TOKEN }}
117123 with :
118124 command : upload
119125 args : --skip-existing *
126+
You can’t perform that action at this time.
0 commit comments