Skip to content

Commit

Permalink
[BUG] Anaconda client needs wildcard for upload (#1413)
Browse files Browse the repository at this point in the history
  • Loading branch information
samster25 authored Sep 23, 2023
1 parent 1526233 commit 5456504
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/*
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/*
else
echo "Files do not exist"
return 1
Expand Down

0 comments on commit 5456504

Please sign in to comment.