File tree Expand file tree Collapse file tree 1 file changed +13
-6
lines changed Expand file tree Collapse file tree 1 file changed +13
-6
lines changed Original file line number Diff line number Diff line change @@ -16,20 +16,26 @@ jobs:
16
16
strategy :
17
17
matrix :
18
18
python-version :
19
- - 3.6
20
- - 3.7
21
- - 3.8
22
- - 3.9
19
+ - " 3.6"
20
+ - " 3.7"
21
+ - " 3.8"
22
+ - " 3.9"
23
23
- " 3.10"
24
24
- " 3.11"
25
25
- " 3.12"
26
26
include :
27
27
- os : ubuntu-latest
28
28
29
29
# older versions need older OS
30
- - python-version : 3.6
30
+ - python-version : " 3.6"
31
31
os : ubuntu-20.04
32
32
33
+ - python-version : " 3.7"
34
+ os : ubuntu-22.04
35
+
36
+ - python-version : " 3.8"
37
+ os : ubuntu-22.04
38
+
33
39
name : python${{ matrix.python-version }}
34
40
runs-on : ${{ matrix.os }}
35
41
@@ -183,6 +189,7 @@ jobs:
183
189
184
190
- uses : actions/upload-artifact@v4
185
191
with :
192
+ name : whl-${{ matrix.os }}${{ matrix.name_suffix }}
186
193
path : ./wheelhouse/*.whl
187
194
188
195
# -------------------------------------------------------------------------------
@@ -205,6 +212,7 @@ jobs:
205
212
run : python setup.py sdist
206
213
207
214
- uses : actions/upload-artifact@v4
215
+ name : sdist
208
216
with :
209
217
path : dist/*.tar.gz
210
218
@@ -221,7 +229,6 @@ jobs:
221
229
steps :
222
230
- uses : actions/download-artifact@v4
223
231
with :
224
- name : artifact
225
232
path : dist
226
233
227
234
- uses : pypa/gh-action-pypi-publish@release/v1
You can’t perform that action at this time.
0 commit comments