Update .gitlab-ci.yml --exclude=venv/

This commit is contained in:
Russell Ballestrini 2025-01-23 00:34:52 +00:00
parent 8ab35183e8
commit 009eacb282

View file

@ -26,7 +26,7 @@ deploy:
if [ ! -d "${APP_DIR}" ]; then
mkdir -p "${APP_DIR}"
fi
rsync -a --exclude=data/ --delete "${CI_PROJECT_DIR}/" "${APP_DIR}/"
rsync -a --exclude=data/ --exclude=venv/ --delete "${CI_PROJECT_DIR}/" "${APP_DIR}/"
# Step 3: Set up Python virtual environment and install dependencies
- |