Skip to content

Commit fbbdfc1

Browse files
committed
forgot to add the env var to the steps
1 parent 6495d97 commit fbbdfc1

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/pr-preview.yml

+4
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ jobs:
2929
3030
- name: Check if version exists on Test PyPI
3131
id: version_check
32+
env:
33+
VERSION: ${{ env.VERSION }}
3234
run: |
3335
if curl -s https://test.pypi.org/pypi/socketsecurity/$VERSION/json | grep -q '"version": "'$VERSION'"'; then
3436
echo "Version ${VERSION} already exists on Test PyPI"
@@ -98,6 +100,8 @@ jobs:
98100
- name: Verify package is available
99101
if: steps.version_check.outputs.exists != 'true'
100102
id: verify_package
103+
env:
104+
VERSION: ${{ env.VERSION }}
101105
run: |
102106
# Wait for package to be available (try up to 5 times with 60s delay)
103107
for i in {1..5}; do

0 commit comments

Comments
 (0)