We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a936fe commit e1eaa18Copy full SHA for e1eaa18
1 file changed
.github/workflows/release.yaml
@@ -103,6 +103,18 @@ jobs:
103
echo "### Versions" >> "$GITHUB_STEP_SUMMARY"
104
echo "- Loader: ${LOADER_VERSION}" >> "$GITHUB_STEP_SUMMARY"
105
106
+ - name: Wait for PyPI index propagation
107
+ run: |
108
+ for i in $(seq 1 12); do
109
+ if pip index versions zodb-pgjsonb-thumborblobloader 2>/dev/null | grep -q "${{ steps.versions.outputs.loader }}"; then
110
+ echo "Version ${{ steps.versions.outputs.loader }} available on PyPI"
111
+ exit 0
112
+ fi
113
+ echo "Waiting for PyPI index (attempt $i/12)..."
114
+ sleep 10
115
+ done
116
+ echo "::warning::Version not yet visible on PyPI after 2 minutes, proceeding anyway"
117
+
118
- uses: docker/setup-qemu-action@v3
119
120
- uses: docker/setup-buildx-action@v3
0 commit comments