From 754799a5ed692f371946c1cae4e9c0bc73d73bbc Mon Sep 17 00:00:00 2001 From: Khalim Conn-Kowlessar Date: Wed, 19 Jul 2023 10:28:51 +0100 Subject: [PATCH] Fixed actions install statement --- .github/workflows/deploy_fastapi_backend.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy_fastapi_backend.yml b/.github/workflows/deploy_fastapi_backend.yml index 5ea9582c..a9534e03 100644 --- a/.github/workflows/deploy_fastapi_backend.yml +++ b/.github/workflows/deploy_fastapi_backend.yml @@ -26,8 +26,8 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - cd backend && pip install -r requirements/base.txt - cd model_data && pip install -r requirements/requirements.txt + pip install -r backend/requirements/base.txt + pip install -r model_data/requirements/requirements.txt - name: AWS credentials for dev if: github.ref == 'refs/heads/dev'