Skip to content

Commit

Permalink
[BUG] Anaconda client don't upload src wheels (#1415)
Browse files Browse the repository at this point in the history
  • Loading branch information
samster25 authored Sep 23, 2023
1 parent 5456504 commit c3cf438
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ci/upload_wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ upload_wheels() {
else
if compgen -G "./dist/*"; then
echo "Found in dist"
anaconda -q -t ${TOKEN} upload --force -u ${ANACONDA_ORG} ./dist/*
anaconda -q -t ${TOKEN} upload --force -u ${ANACONDA_ORG} ./dist/*.whl
elif compgen -G "./wheelhouse/*"; then
echo "Found in wheelhouse"
anaconda -q -t ${TOKEN} upload --force -u ${ANACONDA_ORG} ./wheelhouse/*
anaconda -q -t ${TOKEN} upload --force -u ${ANACONDA_ORG} ./wheelhouse/*.whl
else
echo "Files do not exist"
return 1
Expand Down

0 comments on commit c3cf438

Please sign in to comment.