File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2121 command : sdist
2222 args : --out dist --manifest-path pybigtools/Cargo.toml
2323 - name : Upload sdist
24- uses : actions/upload-artifact@v3
24+ uses : actions/upload-artifact@v4
2525 with :
26- name : wheels
26+ name : wheels-sdist
2727 path : dist
2828
2929 linux :
5050 # sccache: 'true'
5151 manylinux : ' 2_28'
5252 - name : Upload wheels
53- uses : actions/upload-artifact@v3
53+ uses : actions/upload-artifact@v4
5454 with :
55- name : wheels
55+ name : wheels-linux-${{ matrix.target.target }}
5656 path : dist
5757
5858 windows :
7575 args : --release --out dist --find-interpreter --manifest-path pybigtools/Cargo.toml
7676 # sccache: 'true'
7777 - name : Upload wheels
78- uses : actions/upload-artifact@v3
78+ uses : actions/upload-artifact@v4
7979 with :
80- name : wheels
80+ name : wheels-windows-${{ matrix.target }}
8181 path : dist
8282
8383 macos :
9999 args : --release --out dist --find-interpreter --manifest-path pybigtools/Cargo.toml
100100 # sccache: 'true'
101101 - name : Upload wheels
102- uses : actions/upload-artifact@v3
102+ uses : actions/upload-artifact@v4
103103 with :
104- name : wheels
104+ name : wheels-macos-${{ matrix.target }}
105105 path : dist
106106
107107 publish :
@@ -114,11 +114,13 @@ jobs:
114114 needs : [linux, windows, macos, sdist]
115115
116116 steps :
117- - uses : actions/download-artifact@v3
117+ - uses : actions/download-artifact@v4
118118 with :
119- name : wheels
119+ path : wheels
120+ pattern : wheels-*
121+ merge-multiple : true
120122 - name : Publish to PyPI
121123 uses : PyO3/maturin-action@v1
122124 with :
123125 command : upload
124- args : --skip-existing *
126+ args : --skip-existing wheels/ *
You can’t perform that action at this time.
0 commit comments