File tree 1 file changed +4
-3
lines changed
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -60,22 +60,23 @@ jobs:
60
60
- name : Install Poetry
61
61
run : |
62
62
curl -sSL https://install.python-poetry.org | python3 -
63
-
63
+
64
64
- name : Add Poetry to PATH
65
65
run : |
66
- echo "source $HOME/.poetry/env " >> $GITHUB_ENV
66
+ echo "PATH= $HOME/.poetry/bin:$PATH " >> $GITHUB_ENV
67
67
68
68
- name : Install dependencies with Poetry
69
69
run : |
70
70
poetry install
71
71
72
72
- name : ' Run import_packages.py with poetry'
73
73
run : |
74
- poetry run python scripts/import_packages.py --jsonl-dir /tmp --vec -db-path /tmp/sqlite_data/vectordb.db
74
+ poetry run python scripts/import_packages.py --jsonl-dir /tmp/jsonl-files - -db-path /tmp/sqlite_data/vectordb.db
75
75
76
76
- name : ' Upload SQLite Vector DB File'
77
77
uses : actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4
78
78
with :
79
79
name : sqlite_vectordb_file
80
80
path : /tmp/sqlite_data/vectordb.db
81
81
retention-days : 90
82
+
You can’t perform that action at this time.
0 commit comments