File tree Expand file tree Collapse file tree 3 files changed +25
-11
lines changed Expand file tree Collapse file tree 3 files changed +25
-11
lines changed Original file line number Diff line number Diff line change 30
30
- name : Upload sdist
31
31
uses : actions/upload-artifact@v4
32
32
with :
33
+ name : sdist
33
34
path : dist/*.tar.gz
35
+ compression-level : 0
34
36
35
37
build_wheels :
36
38
name : Build wheels on ${{ matrix.os }}
68
70
- name : Upload wheels
69
71
uses : actions/upload-artifact@v4
70
72
with :
73
+ name : bdist-${{ matrix.os }}
71
74
path : wheelhouse/*.whl
75
+ compression-level : 0
72
76
73
77
build_arch_wheels :
74
78
name : Build wheels on Linux ${{ matrix.arch }}
82
86
with :
83
87
submodules : true
84
88
85
- - uses : docker/setup-qemu-action@v2
89
+ - uses : docker/setup-qemu-action@v3
86
90
with :
87
91
platforms : all
88
92
98
102
- name : Upload wheels
99
103
uses : actions/upload-artifact@v4
100
104
with :
105
+ name : bdist-linux-${{ matrix.arch }}
101
106
path : wheelhouse/*.whl
107
+ compression-level : 0
Original file line number Diff line number Diff line change 30
30
- name : Upload sdist
31
31
uses : actions/upload-artifact@v4
32
32
with :
33
+ name : sdist
33
34
path : dist/*.tar.gz
35
+ compression-level : 0
34
36
35
37
build_wheels :
36
38
name : Build wheels on ${{ matrix.os }}
68
70
- name : Upload wheels
69
71
uses : actions/upload-artifact@v4
70
72
with :
73
+ name : bdist-${{ matrix.os }}
71
74
path : wheelhouse/*.whl
75
+ compression-level : 0
72
76
73
77
build_arch_wheels :
74
78
name : Build wheels on Linux ${{ matrix.arch }}
82
86
with :
83
87
submodules : true
84
88
85
- - uses : docker/setup-qemu-action@v2
89
+ - uses : docker/setup-qemu-action@v3
86
90
with :
87
91
platforms : all
88
92
98
102
- name : Upload wheels
99
103
uses : actions/upload-artifact@v4
100
104
with :
105
+ name : bdist-linux-${{ matrix.arch }}
101
106
path : wheelhouse/*.whl
107
+ compression-level : 0
102
108
103
109
upload_pypi :
104
110
needs : [build_arch_wheels, build_wheels, build_sdist]
@@ -109,13 +115,11 @@ jobs:
109
115
110
116
- uses : actions/download-artifact@v4
111
117
with :
112
- # unpacks default artifact into dist/
113
- # if `name: artifact` is omitted, the action will create extra parent dir
114
- name : artifact
115
118
path : dist
119
+ merge-multiple : true
116
120
117
121
- name : Publish distribution to Test PyPI
118
- uses : pypa/gh-action-pypi-publish@v1.8.6
122
+ uses : pypa/gh-action-pypi-publish@release/v1
119
123
with :
120
124
skip_existing : true
121
125
user : __token__
Original file line number Diff line number Diff line change 34
34
- name : Upload sdist
35
35
uses : actions/upload-artifact@v4
36
36
with :
37
+ name : sdist
37
38
path : dist/*.tar.gz
39
+ compression-level : 0
38
40
39
41
build_wheels :
40
42
name : Build wheels on ${{ matrix.os }}
71
73
- name : Upload wheels
72
74
uses : actions/upload-artifact@v4
73
75
with :
76
+ name : bdist-${{ matrix.os }}
74
77
path : wheelhouse/*.whl
78
+ compression-level : 0
75
79
76
80
build_arch_wheels :
77
81
name : Build wheels on Linux ${{ matrix.arch }}
85
89
with :
86
90
submodules : true
87
91
88
- - uses : docker/setup-qemu-action@v2
92
+ - uses : docker/setup-qemu-action@v3
89
93
with :
90
94
platforms : all
91
95
@@ -101,7 +105,9 @@ jobs:
101
105
- name : Upload wheels
102
106
uses : actions/upload-artifact@v4
103
107
with :
108
+ name : bdist-linux-${{ matrix.arch }}
104
109
path : wheelhouse/*.whl
110
+ compression-level : 0
105
111
106
112
upload_pypi :
107
113
needs : [build_arch_wheels, build_wheels, build_sdist]
@@ -110,13 +116,11 @@ jobs:
110
116
steps :
111
117
- uses : actions/download-artifact@v4
112
118
with :
113
- # unpacks default artifact into dist/
114
- # if `name: artifact` is omitted, the action will create extra parent dir
115
- name : artifact
116
119
path : dist
120
+ merge-multiple : true
117
121
118
122
- name : Publish distribution to PyPI
119
- uses : pypa/gh-action-pypi-publish@v1.8.6
123
+ uses : pypa/gh-action-pypi-publish@release/v1
120
124
with :
121
125
user : __token__
122
126
password : ${{ secrets.PYPI_API_TOKEN }}
You can’t perform that action at this time.
0 commit comments