File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed
Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change 4141 cd ~
4242 ${PYBIN}/py.test ${GITHUB_WORKSPACE}/python/tests/
4343 ${PYBIN}/py.test ${GITHUB_WORKSPACE}/python/integration-tests/
44+
45+ - name : Publish package
46+ if : github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
47+ uses : pypa/gh-action-pypi-publish@master
48+ with :
49+ user : __token__
50+ password : ${{ secrets.pypi_password }}
51+ packages_dir : wheelhouse
Original file line number Diff line number Diff line change 9898 cd python
9999 python -m pip install --user wheelhouse/*.whl
100100 python -m pytest tests
101+
102+ - name : Publish package
103+ if : runner.os == 'macOS' && github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
104+ uses : pypa/gh-action-pypi-publish@master
105+ with :
106+ user : __token__
107+ password : ${{ secrets.pypi_password }}
108+ packages_dir : wheelhouse
You can’t perform that action at this time.
0 commit comments