fix(rag): Git pull deploy dir before ingestion
All checks were successful
CI/CD / go-lint (push) Has been skipped
CI/CD / python-lint (push) Has been skipped
CI/CD / nodejs-lint (push) Has been skipped
CI/CD / test-go-ai-compliance (push) Successful in 40s
CI/CD / test-python-backend-compliance (push) Successful in 44s
CI/CD / test-python-document-crawler (push) Successful in 29s
CI/CD / test-python-dsms-gateway (push) Successful in 23s
CI/CD / deploy-hetzner (push) Successful in 18s

The RAG workflow mounts scripts from /opt/breakpilot-compliance/scripts
(deploy dir) but this may not have the latest fixes if CI hasn't
deployed yet. Add explicit git pull before running ingestion.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Benjamin Admin
2026-03-12 13:13:33 +01:00
parent 57f390190d
commit a0e2a35e66

View File

@@ -67,6 +67,11 @@ jobs:
echo "BreakPilot Netzwerk: $BP_NETWORK"
echo ""
# Scripts aus dem Deploy-Dir aktualisieren (git pull)
# damit die neuesten Fixes verfuegbar sind
cd "${DEPLOY_DIR}" && git pull --no-rebase origin main 2>/dev/null || true
cd -
# Ingestion in einem Container auf dem BP-Netzwerk ausfuehren,
# mit Zugriff auf die Scripts aus dem Deploy-Dir
docker run --rm \