File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -99,14 +99,14 @@ jobs:
9999 if : steps.version_check.outputs.exists != 'true'
100100 id : verify_package
101101 run : |
102- # Wait for package to be available (try up to 5 times with 10s delay)
102+ # Wait for package to be available (try up to 5 times with 60s delay)
103103 for i in {1..5}; do
104104 if curl -s https://test.pypi.org/pypi/socketsecurity/$VERSION/json | grep -q '"version": "'$VERSION'"'; then
105105 echo "Package ${VERSION} is now available on Test PyPI"
106106 exit 0
107107 fi
108- echo "Attempt $i: Package not yet available, waiting 10s ..."
109- sleep 10
108+ echo "Attempt $i: Package not yet available, waiting 60s ..."
109+ sleep 60
110110 done
111111 echo "Package ${VERSION} not available after 5 attempts"
112112 exit 1
You can’t perform that action at this time.
0 commit comments