summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-05-31 08:38:51 +0200
committerROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-05-31 08:38:51 +0200
commit884b53725f76c85196e783d7853ea9cc6d207378 (patch)
tree740c1cb3123ede213cd7fde2df56da6d3605ada6 /.github/workflows
parent9813f905ac8dbc814d3ff4f078df4125779b467f (diff)
Debug traces on osx
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/pip-packaging-osx.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/pip-packaging-osx.yml b/.github/workflows/pip-packaging-osx.yml
index c5b99ab6..28dd1d53 100644
--- a/.github/workflows/pip-packaging-osx.yml
+++ b/.github/workflows/pip-packaging-osx.yml
@@ -36,8 +36,11 @@ jobs:
cmake -DCMAKE_BUILD_TYPE=Release -DPython_ADDITIONAL_VERSIONS=3 ..
cd src/python
python setup.py bdist_wheel
+ pwd
- name: Publish on PyPi
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
- run: python -m twine upload --repository-url https://test.pypi.org/legacy/ dist/* \ No newline at end of file
+ run: |
+ pwd
+ python -m twine upload --repository-url https://test.pypi.org/legacy/ build/src/python/dist/* \ No newline at end of file