summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-06-08 08:02:20 +0200
committerROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-06-08 08:02:20 +0200
commit8f8b0965ac79f4051fc321a6f4714082624d6561 (patch)
treeab0a4df7066250a7c6ecf1bd1186b5db2e111f3b /.github/workflows
parente822b2f1e68feebccf9dd069447c5df5574dc650 (diff)
Use full path for delocate
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/pip-packaging-osx.yml6
1 files changed, 2 insertions, 4 deletions
diff --git a/.github/workflows/pip-packaging-osx.yml b/.github/workflows/pip-packaging-osx.yml
index d7bfc66b..199e6f01 100644
--- a/.github/workflows/pip-packaging-osx.yml
+++ b/.github/workflows/pip-packaging-osx.yml
@@ -42,8 +42,6 @@ jobs:
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
mkdir wheelhouse
- type delocate-listdeps
- type delocate-wheel
- delocate-listdeps build/src/python/dist/*
- delocate-wheel --require-archs x86_64 -w wheelhouse build/src/python/dist/*
+ /Users/runner/.local/bin/delocate-listdeps build/src/python/dist/*
+ /Users/runner/.local/bin/delocate-wheel --require-archs x86_64 -w wheelhouse build/src/python/dist/*
python -m twine upload --repository-url https://test.pypi.org/legacy/ wheelhouse/* \ No newline at end of file