fix: enhance pip cache directory step with additional output for debugging

This commit is contained in:
2025-10-23 09:17:34 +02:00
parent 4824472c77
commit 70b45fdafa

View File

@@ -26,7 +26,10 @@ jobs:
- name: Locate pip cache directory - name: Locate pip cache directory
id: pip-cache-dir id: pip-cache-dir
run: echo "dir=$(python -m pip cache dir)" >> "$GITHUB_OUTPUT" # extra output for debugging
run: |
echo "dir=$(python -m pip cache dir)" >> "$GITHUB_OUTPUT"
echo "dir=$(python -m pip cache dir)"
- name: Cache pip - name: Cache pip
uses: actions/cache@v4 uses: actions/cache@v4