Commit 66c0c454 authored by Titus von Koeller's avatar Titus von Koeller
Browse files

continuous release: tweaks

parent 90f38acc
...@@ -175,10 +175,10 @@ jobs: ...@@ -175,10 +175,10 @@ jobs:
- name: Inspect tmp directory after downloading artifacts - name: Inspect tmp directory after downloading artifacts
run: | run: |
ls -alFR tmp/ ls -alFR tmp/
WHEEL_COUNT=$(find wheels -type f -name "*.whl" | wc -l) WHEEL_COUNT=$(find tmp/ -type f -name "*.whl" | wc -l)
echo "Found $WHEEL_COUNT wheel files" echo "Found $WHEEL_COUNT wheel files"
if [ "$WHEEL_COUNT" -eq 0 ]; then if [ "$WHEEL_COUNT" -eq 0 ]; then
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."
exit 1 exit 1
fi fi
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment