From ee35ad7bc7b3c4385c0c5ac43e86d63ee0ae6e07 Mon Sep 17 00:00:00 2001 From: Khalim Conn-Kowlessar Date: Sun, 9 Jul 2023 14:58:25 +0100 Subject: [PATCH] Added install of serverless-python-requirements to github actions --- .github/workflows/deploy_fastapi_backend.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy_fastapi_backend.yml b/.github/workflows/deploy_fastapi_backend.yml index 547dd31d..3efa350b 100644 --- a/.github/workflows/deploy_fastapi_backend.yml +++ b/.github/workflows/deploy_fastapi_backend.yml @@ -17,8 +17,10 @@ jobs: with: python-version: 3.10.12 - - name: Install Serverless - run: npm install -g serverless + - name: Install Serverless and plugins + run: | + npm install -g serverless + npm install -g serverless-python-requirements - name: Install dependencies run: |