File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -27,16 +27,17 @@ jobs:
27
27
os : [ubuntu-latest, windows-latest, macos-latest]
28
28
29
29
steps :
30
- - uses : actions/checkout@v2
30
+ - uses : actions/checkout@v4
31
31
32
32
- name : Build wheels
33
- uses : pypa/cibuildwheel@v2.16.5
33
+ uses : pypa/cibuildwheel@v2.21.3
34
34
env :
35
35
CIBW_ARCHS_MACOS : " x86_64 arm64"
36
36
PIP_EXTRA_INDEX_URL : " https://download.pytorch.org/whl/cpu"
37
37
38
38
- uses : actions/upload-artifact@v4
39
39
with :
40
+ name : cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
40
41
path : ./wheelhouse/*.whl
41
42
42
43
build_sdist :
50
51
51
52
- uses : actions/upload-artifact@v4
52
53
with :
54
+ name : cibw-sdist
53
55
path : dist/*.tar.gz
54
56
55
57
PyPI :
@@ -59,10 +61,12 @@ jobs:
59
61
runs-on : ubuntu-latest
60
62
61
63
steps :
62
- - uses : actions/download-artifact@v4.1.7
64
+ - uses : actions/download-artifact@v4
63
65
with :
64
66
name : artifact
67
+ pattern : cibw-*
65
68
path : dist
69
+ merge-multiple : true
66
70
- name : Publish package
67
71
68
72
with :
You can’t perform that action at this time.
0 commit comments