We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6495d97 commit fbbdfc1Copy full SHA for fbbdfc1
.github/workflows/pr-preview.yml
@@ -29,6 +29,8 @@ jobs:
29
30
- name: Check if version exists on Test PyPI
31
id: version_check
32
+ env:
33
+ VERSION: ${{ env.VERSION }}
34
run: |
35
if curl -s https://test.pypi.org/pypi/socketsecurity/$VERSION/json | grep -q '"version": "'$VERSION'"'; then
36
echo "Version ${VERSION} already exists on Test PyPI"
@@ -98,6 +100,8 @@ jobs:
98
100
- name: Verify package is available
99
101
if: steps.version_check.outputs.exists != 'true'
102
id: verify_package
103
104
105
106
# Wait for package to be available (try up to 5 times with 60s delay)
107
for i in {1..5}; do
0 commit comments