We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c35ac9 commit 7de7f1cCopy full SHA for 7de7f1c
ci/upload_wheels.sh
@@ -28,12 +28,12 @@ upload_wheels() {
28
if compgen -G "./dist/*.gz"; then
29
echo "Found sdist"
30
anaconda -q -t ${TOKEN} upload --skip -u ${ANACONDA_ORG} ./dist/*.gz
31
- elif compgen -G "./wheelhouse/*.whl"; then
+ echo "Uploaded sdist"
32
+ fi
33
+ if compgen -G "./wheelhouse/*.whl"; then
34
echo "Found wheel"
35
anaconda -q -t ${TOKEN} upload --skip -u ${ANACONDA_ORG} ./wheelhouse/*.whl
- else
- echo "Files do not exist"
36
- return 1
+ echo "Uploaded wheel"
37
fi
38
echo "PyPI-style index: https://pypi.anaconda.org/$ANACONDA_ORG/simple"
39
0 commit comments