File tree 1 file changed +22
-1
lines changed
1 file changed +22
-1
lines changed Original file line number Diff line number Diff line change 61
61
- name : Install cibuildwheels
62
62
run : python -m pip install cibuildwheel==2.20.0
63
63
- name : Build ittapi python wheels
64
- run : python -m cibuildwheel python --output-dir python_dist/${{ runner.os }}
64
+ run : python -m cibuildwheel python --output-dir python_dist
65
65
env :
66
66
CIBW_BUILD : cp3*
67
67
CIBW_SKIP : ${{ matrix.cibw_skip_args }}
@@ -114,3 +114,24 @@ jobs:
114
114
asset_path : ./ittapi_build_${{ github.ref_name }}.zip
115
115
asset_name : ittapi_build_${{ github.ref_name }}.zip
116
116
asset_content_type : application/zip
117
+
118
+ # upload the built wheels to PyPi
119
+ upload_to_pypi :
120
+ name : Upload the wheel files to PyPi
121
+ runs-on : ubuntu-latest
122
+ needs : [python_build, create_release]
123
+ steps :
124
+ - name : Download artifacts
125
+ uses : actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 # v4.1.1
126
+ with :
127
+ pattern : build-artifacts-*
128
+ merge-multiple : true
129
+ - name : List wheel files
130
+ run : find -name *.whl
131
+ - name : Publish package distributions to PyPi
132
+ uses : pypa/gh-action-pypi-publish@0ab0b79471669eb3a4d647e625009c62f9f3b241 # v1.10.1
133
+ with :
134
+ password : ${{ secrets.PYPI }}
135
+ repository-url : https://upload.pypi.org/legacy/
136
+ packages-dir : python_dist
137
+ skip-existing : true
You can’t perform that action at this time.
0 commit comments