Skip to content

Commit

Permalink
dont skip if there already
Browse files Browse the repository at this point in the history
  • Loading branch information
samster25 committed Sep 23, 2023
1 parent 366f2b5 commit 3bc0175
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 --skip -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 --skip -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 3bc0175

Please sign in to comment.