3 files changed +11
-9
lines changed Original file line number Diff line number Diff line change 30
30
- uses : actions/checkout@v4
31
31
32
32
- name : Get conda
33
- uses : conda-incubator/setup-miniconda@v3.0.0
33
+ uses : conda-incubator/setup-miniconda@v3.0.3
34
34
with :
35
35
python-version : ${{ matrix.python-version }}
36
36
channels : conda-forge
Original file line number Diff line number Diff line change 24
24
steps :
25
25
- uses : actions/checkout@v4
26
26
27
- - uses : actions/setup-python@v4
27
+ - uses : actions/setup-python@v5
28
28
with :
29
29
python-version : ${{ matrix.python-version }}
30
30
Original file line number Diff line number Diff line change 27
27
- name : Check metadata
28
28
run : pipx run twine check dist/*
29
29
30
- - uses : actions/upload-artifact@v3
30
+ - uses : actions/upload-artifact@v4
31
31
with :
32
+ name : cibw-sdist
32
33
path : dist/*.tar.gz
33
34
34
35
43
44
steps :
44
45
- uses : actions/checkout@v4
45
46
46
- - uses : pypa/cibuildwheel@v2.16
47
+ - uses : pypa/cibuildwheel@v2.17
47
48
env :
48
49
CIBW_ARCHS_MACOS : auto universal2
49
50
52
53
shell : bash
53
54
54
55
- name : Upload wheels
55
- uses : actions/upload-artifact@v3
56
+ uses : actions/upload-artifact@v4
56
57
with :
58
+ name : cibw-wheels-${{ matrix.os }}
57
59
path : wheelhouse/*.whl
58
60
59
61
@@ -64,15 +66,15 @@ jobs:
64
66
if : github.event_name == 'release' && github.event.action == 'published'
65
67
66
68
steps :
67
- - uses : actions/setup-python@v4
69
+ - uses : actions/setup-python@v5
68
70
with :
69
71
python-version : " 3.x"
70
72
71
- - uses : actions/download-artifact@v3
73
+ - uses : actions/download-artifact@v4
72
74
with :
73
- name : artifact
75
+ pattern : cibw-*
74
76
path : dist
75
-
77
+ merge-multiple : true
76
78
- uses : pypa/gh-action-pypi-publish@release/v1
77
79
with :
78
80
user : __token__
0 commit comments