Commit 68da9ab 1 parent f3763db commit 68da9ab Copy full SHA for 68da9ab
File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 44
44
- name : Set Model Cache Directory
45
45
run : |
46
46
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
48
48
else
49
- echo "MODEL_CACHE_DIR=/tmp/fastembed_tmp " >> $GITHUB_ENV
49
+ echo "MODEL_CACHE_DIR=/tmp/fastembed_cache " >> $GITHUB_ENV
50
50
fi
51
51
shell : bash
52
52
@@ -62,10 +62,10 @@ jobs:
62
62
63
63
- name : List Cached Models (Windows)
64
64
if : runner.os == 'Windows'
65
- run : dir C:\Users\runneradmin\AppData\Local\Temp\
65
+ run : dir C:\Users\runneradmin\AppData\Local\Temp\fastembed_cache
66
66
shell : cmd
67
67
68
68
- name : List Cached Models (Linux/macOS)
69
69
if : runner.os != 'Windows'
70
- run : ls -lah /tmp/
70
+ run : ls -lah /tmp/fastembed_cache
71
71
shell : bash
You can’t perform that action at this time.
0 commit comments