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 ceffd6d commit 88faa10Copy full SHA for 88faa10
.github/workflows/publish_python.yaml
@@ -88,7 +88,7 @@ jobs:
88
id: check
89
run: |
90
version="${{ needs.build.outputs.version }}"
91
- status_code=$(curl -o /dev/null -s -w "%{http_code}" https://pypi.org/project/${{ env.PACKAGE_NAME }}/${version}/)
+ status_code=$(curl -o /dev/null -s -w "%{http_code}" https://pypi.org/pypi/${{ env.PACKAGE_NAME }}/${version}/json)
92
echo "status_code=${status_code}"
93
if [ "$status_code" = "200" ]; then
94
is_new_version=false
0 commit comments