From ed3bec5f61ca54064f6bab1b90143a94dc67c808 Mon Sep 17 00:00:00 2001 From: Dustin Alandzes Date: Sun, 25 Aug 2024 22:19:20 -0500 Subject: [PATCH] debug --- .github/workflows/backend-deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/backend-deploy.yml b/.github/workflows/backend-deploy.yml index 472765f..3cb44ce 100644 --- a/.github/workflows/backend-deploy.yml +++ b/.github/workflows/backend-deploy.yml @@ -27,8 +27,8 @@ jobs: aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} aws-region: us-east-1 - name: Install Dependencies - run: 'pip install -r requirements.txt -t ./package --platform manylinux2014_x86_64 --only-binary=:all:' + run: 'ls -la && pip install -r requirements.txt -t ./package --platform manylinux2014_x86_64 --only-binary=:all:' - name: Archive the lambda function code and dependencies - run: cp main.py package/main.py && zip -r ../deployment_package.zip package + run: cp main.py package/main.py && zip -r deployment_package.zip package - name: Push code to lambda run: aws lambda update-function-code --function-name ${{ env.AWS_LAMBDA_FUNCTION_ARN }} --zip-file fileb://deployment_package.zip \ No newline at end of file