We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d14dcc7 commit 6495d97Copy full SHA for 6495d97
1 file changed
.github/workflows/pr-preview.yml
@@ -99,14 +99,14 @@ jobs:
99
if: steps.version_check.outputs.exists != 'true'
100
id: verify_package
101
run: |
102
- # Wait for package to be available (try up to 5 times with 10s delay)
+ # Wait for package to be available (try up to 5 times with 60s delay)
103
for i in {1..5}; do
104
if curl -s https://test.pypi.org/pypi/socketsecurity/$VERSION/json | grep -q '"version": "'$VERSION'"'; then
105
echo "Package ${VERSION} is now available on Test PyPI"
106
exit 0
107
fi
108
- echo "Attempt $i: Package not yet available, waiting 10s..."
109
- sleep 10
+ echo "Attempt $i: Package not yet available, waiting 60s..."
+ sleep 60
110
done
111
echo "Package ${VERSION} not available after 5 attempts"
112
exit 1
0 commit comments