We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b890d4b commit 6ca9d13Copy full SHA for 6ca9d13
.github/workflows/_merge_cache.yml
@@ -35,12 +35,16 @@ jobs:
35
path: ${{ inputs.pypi-dir }}
36
key: ${{ inputs.pypi-key }}
37
38
+ - name: show pulled caches
39
+ continue-on-error: true
40
+ run: ls -lh ${{ inputs.pypi-dir }}
41
+
42
- name: show 📦
43
run: |
44
# create the directory if it doesn't exist - no artifact were found
45
mkdir -p _local-packages
46
ls -lh _local-packages
- ls -lh ${{ inputs.pypi-dir }}
47
+ mkdir -p ${{ inputs.pypi-dir }}
48
# count files in the staging dir
49
file_count=$(ls -1 "_local-packages/" | wc -l)
50
echo "NUM_PACKAGES=$file_count" >> $GITHUB_ENV
0 commit comments