Skip to content

Commit

Permalink
Merge branch 'main' of github.com:kaviles22/Grooming-Analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
kpaviles committed Jan 3, 2025
2 parents a6f9df3 + cc41946 commit a3c7022
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions .github/workflows/autoload_qdrant.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,26 @@ on:
pull_request:
branches: [ "main" ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
load:
runs-on: ubuntu-latest

strategy:
matrix:
python-version: ["pypy3.10"]

steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
# Runs a single command using the runners shell

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'

- name: load-vectorstore to qdrant
- env:
env:
QDRANT_URL: ${{secrets.QDRANT_URL}}
QDRANT_API_KEY: ${{secrets.QDRANT_API_KEY}}
run:
run: |
pip install -r requirements.txt
python autoload_qdrant.py

0 comments on commit a3c7022

Please sign in to comment.