From 009eacb282e044a7cb97902afabdaa401e4fd7e8 Mon Sep 17 00:00:00 2001 From: Russell Ballestrini Date: Thu, 23 Jan 2025 00:34:52 +0000 Subject: [PATCH] Update .gitlab-ci.yml --exclude=venv/ --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 31a372a..4ee1da3 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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 - |