File tree Expand file tree Collapse file tree 1 file changed +23
-10
lines changed Expand file tree Collapse file tree 1 file changed +23
-10
lines changed Original file line number Diff line number Diff line change 32
32
33
33
- uses : actions/upload-artifact@v4
34
34
with :
35
+ name : sdist
35
36
path : dist/*.tar.gz
36
37
37
38
build_wheels :
@@ -53,17 +54,24 @@ jobs:
53
54
54
55
- uses : actions/upload-artifact@v4
55
56
with :
57
+ name : wheels
56
58
path : ./wheelhouse/*.whl
57
59
58
60
check_dist :
59
61
name : Check dist
60
62
needs : [make_sdist,build_wheels]
61
63
runs-on : ubuntu-22.04
62
64
steps :
63
- - uses : actions/download-artifact@v3
65
+ - uses : actions/download-artifact@v4
64
66
with :
65
- name : artifact
67
+ name : sdist
66
68
path : dist
69
+
70
+ - uses : actions/download-artifact@v4
71
+ with :
72
+ name : wheels
73
+ path : dist
74
+
67
75
- name : Check SDist
68
76
run : |
69
77
mkdir -p test-sdist
@@ -83,12 +91,17 @@ jobs:
83
91
runs-on : ubuntu-latest
84
92
if : github.event_name == 'release' && github.event.action == 'published'
85
93
steps :
86
- - uses : actions/download-artifact@v3
87
- with :
88
- name : artifact
89
- path : dist
94
+ - uses : actions/download-artifact@v4
95
+ with :
96
+ name : sdist
97
+ path : dist
90
98
91
-
92
- with :
93
- user : __token__
94
- password : ${{ secrets.pypi_password }}
99
+ - uses : actions/download-artifact@v4
100
+ with :
101
+ name : wheels
102
+ path : dist
103
+
104
+
105
+ with :
106
+ user : __token__
107
+ password : ${{ secrets.pypi_password }}
You can’t perform that action at this time.
0 commit comments