From c23b0f62dad1437f4181b307043a11ec0dd03b59 Mon Sep 17 00:00:00 2001 From: GotthardG <51994228+GotthardG@users.noreply.github.com> Date: Mon, 16 Dec 2024 14:45:33 +0100 Subject: [PATCH] fixing bugs with ci pipeline --- .gitlab-ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 33948f3..306c173 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -62,6 +62,9 @@ release: TWINE_USERNAME: gitlab-ci-token # Keep username same TWINE_PASSWORD: $CI_JOB_TOKEN # Use PAT stored in GitLab CI/CD Variables script: + - echo "Setting up Python dependencies..." + - source $VIRTUAL_ENV/bin/activate + - pip install -r requirements.txt - bash make_openapi_client.sh - cd backend/python-client # Navigate to the folder where the package was generated - python3 -m venv .venv -- GitLab