37 lines
959 B
YAML
37 lines
959 B
YAML
name: Run VectorLoader Script
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
Explore-Gitea-Actions:
|
|
runs-on: ubuntu-latest
|
|
container: catthehacker/ubuntu:act-latest
|
|
steps:
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v3
|
|
with:
|
|
python-version: '3.11.7'
|
|
|
|
- name: Clone additional repository
|
|
run: |
|
|
git config --global credential.helper cache
|
|
git clone https://fabel:${{ secrets.CICD }}@gitea.fabelous.app/fabel/VectorLoader.git
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
cd VectorLoader
|
|
python -m pip install --upgrade pip
|
|
pip install -r requirements.txt
|
|
|
|
- name: Run vectorizing
|
|
env:
|
|
VECTORDB_TOKEN: ${{ secrets.VECTORDB_TOKEN }}
|
|
run: |
|
|
python -m src.run --full
|