Skip to content

Commit

Permalink
Fix bug in publish script that breaks pypi loop
Browse files Browse the repository at this point in the history
  • Loading branch information
criccomini committed Dec 20, 2023
1 parent c8ddc52 commit 049ef45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
echo "Package version ${PACKAGE_VERSION} is not yet available on PyPI."
echo "Retrying in $SLEEP_SECONDS seconds."
sleep $SLEEP_SECONDS
((ATTEMPT_COUNT++))
let ATTEMPT_COUNT=ATTEMPT_COUNT+1
fi
done
if [ $ATTEMPT_COUNT -eq $MAX_ATTEMPTS ]; then
Expand Down

0 comments on commit 049ef45

Please sign in to comment.