Merge pull request #14 from Hestia-Homes/main

Added change of directory to backend before running install requireme…
This commit is contained in:
KhalimCK 2023-07-09 14:35:18 +01:00 committed by GitHub
commit f6ba29a63f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -23,7 +23,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements/base.txt
cd backend && pip install -r requirements/base.txt
- name: AWS credentials
uses: aws-actions/configure-aws-credentials@v1
@ -33,4 +33,4 @@ jobs:
aws-region: eu-west-2
- name: Deploy to AWS Lambda via Serverless
run: sls deploy --stage ${{ github.ref_name }}
run: cd backend && sls deploy --stage ${{ github.ref_name }}