Skip to content

Commit

Permalink
updates to query
Browse files Browse the repository at this point in the history
  • Loading branch information
yokwejuste committed Jan 23, 2025
1 parent 56df4a6 commit b258f30
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/lambda_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -205,9 +205,12 @@ jobs:
run: |
mkdir package
cp -r app package/
cp requirements/prod.txt package/
cp -r manage.py package/
cp -r requirements/prod.txt requirements/common.txt package/
cp -r magnum.yml package/
cp -r handler.py package/
cd package
pip install -r prod.txt -t .
pip install -r prod.txt -r common.txt -t .
zip -r ../${{ github.event.repository.name }}-lambda.zip . -x "tests/*" "*.git*" "static/*" "node_modules/*" "venv/*"
cd ..
Expand Down

0 comments on commit b258f30

Please sign in to comment.