Skip to content

Commit 68da9ab

Browse files
chore: Trigger CI test
1 parent f3763db commit 68da9ab

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/python-tests.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ jobs:
4444
- name: Set Model Cache Directory
4545
run: |
4646
if [[ "$RUNNER_OS" == "Windows" ]]; then
47-
echo "MODEL_CACHE_DIR=$LOCALAPPDATA\\Temp\\fastembed_tmp" >> $GITHUB_ENV
47+
echo "MODEL_CACHE_DIR=$LOCALAPPDATA\\Temp\\fastembed_cache" >> $GITHUB_ENV
4848
else
49-
echo "MODEL_CACHE_DIR=/tmp/fastembed_tmp" >> $GITHUB_ENV
49+
echo "MODEL_CACHE_DIR=/tmp/fastembed_cache" >> $GITHUB_ENV
5050
fi
5151
shell: bash
5252

@@ -62,10 +62,10 @@ jobs:
6262
6363
- name: List Cached Models (Windows)
6464
if: runner.os == 'Windows'
65-
run: dir C:\Users\runneradmin\AppData\Local\Temp\
65+
run: dir C:\Users\runneradmin\AppData\Local\Temp\fastembed_cache
6666
shell: cmd
6767

6868
- name: List Cached Models (Linux/macOS)
6969
if: runner.os != 'Windows'
70-
run: ls -lah /tmp/
70+
run: ls -lah /tmp/fastembed_cache
7171
shell: bash

0 commit comments

Comments
 (0)