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 90f38ac commit 66c0c45Copy full SHA for 66c0c45
.github/workflows/python-package.yml
@@ -175,10 +175,10 @@ jobs:
175
- name: Inspect tmp directory after downloading artifacts
176
run: |
177
ls -alFR tmp/
178
- WHEEL_COUNT=$(find wheels -type f -name "*.whl" | wc -l)
+ WHEEL_COUNT=$(find tmp/ -type f -name "*.whl" | wc -l)
179
echo "Found $WHEEL_COUNT wheel files"
180
if [ "$WHEEL_COUNT" -eq 0 ]; then
181
- echo "::error::No wheel files found in wheels directory! Cannot proceed with release."
+ echo "::error::No wheel files found in tmp directory! Cannot proceed with release."
182
exit 1
183
fi
184
0 commit comments