From c331e5cd0a5d1a3f83e64c1dea025c4128cdea3d Mon Sep 17 00:00:00 2001 From: Florencia Date: Thu, 27 Jun 2024 20:42:54 +0200 Subject: [PATCH] Fix in cd --- .github/workflows/cd.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 6116414..2469e2d 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -28,7 +28,9 @@ jobs: # Run training script to have the model available - name: Run training script - run: python ./challenge/training.py + run: | + export PYTHONPATH=$PYTHONPATH:$(pwd) + python ./challenge/training.py # Build and push Docker image - name: Build and push Docker image