We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09e98d3 commit 244c2a5Copy full SHA for 244c2a5
Makefile
@@ -174,10 +174,10 @@ deploy:
174
docker run -v $(shell pwd):/io quay.io/pypa/manylinux_2_34_x86_64 /bin/bash -c "cd /io && LD_LIBRARY_PATH=/io/build/Release/bin/isx/lib:$LD_LIBRARY_PATH auditwheel repair /io/build/Release/bin/dist/isx*.whl"
175
$(VENV_ACTIVATE) $(VENV_NAME) && \
176
pip install twine && \
177
- twine upload '$(shell ls wheelhouse/isx-*.whl)'
+ twine upload --repository testpypi '$(shell ls wheelhouse/isx-*.whl)'
178
else
179
deploy:
180
181
182
- twine upload '$(shell ls $(BUILD_PATH_BIN)/dist/isx-*.whl)'
+ twine upload --repository testpypi '$(shell ls $(BUILD_PATH_BIN)/dist/isx-*.whl)'
183
endif
0 commit comments