File tree 1 file changed +10
-5
lines changed
1 file changed +10
-5
lines changed Original file line number Diff line number Diff line change 13
13
runs-on : ${{ matrix.os }}
14
14
strategy :
15
15
matrix :
16
- os : [ubuntu-24.04, macos-12]
16
+ include :
17
+ - name : linux
18
+ os : ubuntu-24.04
19
+ - name : macos
20
+ os : macos-12
17
21
18
22
steps :
19
23
- uses : actions/checkout@v4
33
37
- name : Build wheels
34
38
run : python -m cibuildwheel --output-dir wheelhouse
35
39
36
- - uses : actions/upload-artifact@v3
40
+ - uses : actions/upload-artifact@v4
37
41
with :
38
- name : wheels
42
+ name : wheels-${{ matrix.name }}
39
43
path : ./wheelhouse/*.whl
40
44
41
45
pypi :
@@ -44,10 +48,11 @@ jobs:
44
48
runs-on : ubuntu-24.04
45
49
46
50
steps :
47
- - uses : actions/download-artifact@v3
51
+ - uses : actions/download-artifact@v4
48
52
with :
49
- name : wheels
50
53
path : dist
54
+ pattern : wheels-*
55
+ merge-multiple : true
51
56
52
57
- name : Display structure of downloaded files
53
58
run : ls -lh dist
You can’t perform that action at this time.
0 commit comments