File tree 1 file changed +19
-1
lines changed
1 file changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ jobs:
106
106
run : python3 setup.py sdist
107
107
- uses : actions/upload-artifact@v4
108
108
with :
109
- name : source_dist
109
+ name : py_source_dist
110
110
path : python-wrapper/dist/**
111
111
if-no-files-found : error
112
112
build_pages :
@@ -139,6 +139,24 @@ jobs:
139
139
uses : actions/upload-pages-artifact@v3
140
140
with :
141
141
path : python-wrapper/docs/_build/html
142
+ deploy_pypi :
143
+ runs-on : " ubuntu-22.04"
144
+ needs : ["py3p8_linux_sdist", "build"]
145
+ steps :
146
+ - uses : actions/download-artifact@v4
147
+ with :
148
+ path : python-wrapper/dist
149
+ merge-multiple : true
150
+ name : py_source_dist
151
+ - uses : actions/download-artifact@v4
152
+ with :
153
+ path : python-wrapper/dist
154
+ merge-multiple : true
155
+ pattern : py_*_*_build
156
+ - name : check artifacts
157
+ run :
158
+ cd python-wrapper
159
+ ls
142
160
deploy_pages :
143
161
runs-on : " ubuntu-22.04"
144
162
needs : build_pages
You can’t perform that action at this time.
0 commit comments