We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5c8e93 commit fdf307fCopy full SHA for fdf307f
1 file changed
.github/workflows/deploy-app.yml
@@ -39,8 +39,8 @@ jobs:
39
40
- name: Package Lambda function
41
run: |
42
- cd src
43
- zip -r deployment.zip . -x "*.git*" -x "node_modules/aws-sdk/*"
+ cd src/handler
+ zip -r ../../deployment.zip . -x "*.git*" -x "node_modules/aws-sdk/*"
44
45
- name: Get artifacts bucket name
46
id: bucket
@@ -53,7 +53,7 @@ jobs:
53
54
- name: Upload to S3
55
56
57
ls -la
58
aws s3 cp deployment.zip \
59
s3://${{ steps.bucket.outputs.name }}/deployment.zip \
0 commit comments