We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47f32cd commit 5898cefCopy full SHA for 5898cef
.github/workflows/python-tests.yml
@@ -49,8 +49,6 @@ jobs:
49
run: |
50
if [[ "$RUNNER_OS" == "Windows" ]]; then
51
echo "MODEL_CACHE_DIR=$TEMP/fastembed_cache" >> $GITHUB_ENV
52
- elif [[ "$RUNNER_OS" == "MacOS" ]]; then
53
- echo "MODEL_CACHE_DIR=/private/var/tmp/fastembed_cache" >> $GITHUB_ENV
54
else
55
echo "MODEL_CACHE_DIR=/tmp/fastembed_cache" >> $GITHUB_ENV
56
fi
@@ -79,9 +77,5 @@ jobs:
79
77
shell: bash
80
78
- name: List Cached Models (MacOS) tmp
81
if: runner.os == 'MacOS'
82
- run: ls -lah /private/var/tmp/
83
- shell: bash
84
- - name: List Cached Models (MacOS) tmp
85
- if: runner.os == 'MacOS'
86
- run: ls -lah /tmp/
+ run: ls -lah /tmp/fastembed_cache
87
0 commit comments