Skip to content

Commit 08193a5

Browse files
ci: add release workflow for automating the PyPI publishing process (#156)
* added workflow for automating the pypi publishing process --------- Co-authored-by: Eugeny Parshutin <[email protected]>
1 parent 9db30bb commit 08193a5

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed

.github/workflows/release.yml

+22-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
- name: Install cibuildwheels
6262
run: python -m pip install cibuildwheel==2.20.0
6363
- 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
6565
env:
6666
CIBW_BUILD: cp3*
6767
CIBW_SKIP: ${{ matrix.cibw_skip_args }}
@@ -114,3 +114,24 @@ jobs:
114114
asset_path: ./ittapi_build_${{ github.ref_name }}.zip
115115
asset_name: ittapi_build_${{ github.ref_name }}.zip
116116
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

0 commit comments

Comments
 (0)