Skip to content

Commit cd0233b

Browse files
author
Daniele Briggi
committed
fix(workflow): dependencies from main index
1 parent 56a2ba9 commit cd0233b

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

action.yaml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,16 @@ runs:
4848

4949
- name: Set up Python
5050
uses: actions/setup-python@v5
51+
with:
52+
python-version: "3.12"
5153

5254
- name: Install SQLite RAG
5355
run: |
5456
python -m pip install --upgrade pip
55-
pip install -i https://test.pypi.org/simple/ sqlite-rag
57+
pip install \
58+
-i https://test.pypi.org/simple/ \
59+
--extra-index-url https://pypi.org/simple \
60+
sqlite-rag
5661
shell: bash
5762

5863
# Cache the downloaded model between workflows
@@ -70,7 +75,7 @@ runs:
7075
run: |
7176
sqlite-rag download-model "${{ inputs.hf_model_id }}" "${{ inputs.hf_gguf_file }}" --local-dir="${{ inputs.hf_model_local_path }}"
7277
sqlite-rag add \
73-
--recursive {{ inputs.source_files }} \
78+
--recursive "${{ inputs.source_files }}" \
7479
--metadata '{"base_url": "{{ inputs.base_url }}"}'
7580
shell: bash
7681

0 commit comments

Comments
 (0)