We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea52c1e commit e4ba354Copy full SHA for e4ba354
.github/workflows/deploy_lambda.yml
@@ -7,13 +7,14 @@ on:
7
pull_request:
8
paths:
9
- "**/*.py"
10
+ - "**/deploy_lambda.yml"
11
12
permissions:
13
id-token: write
14
contents: read
15
defaults:
16
run:
- working-directory: "./hello_lambda_py"
17
+ working-directory: "./hello_lambda"
18
env:
19
PYTHON_VERSION: 3.13
20
function-name: hello_lambda_actions
@@ -42,7 +43,7 @@ jobs:
42
43
uses: aws-actions/aws-lambda-deploy@v1.0.1
44
with:
45
function-name: ${{ env.function-name }}
- code-artifacts-dir: ./hello_world
46
+ code-artifacts-dir: ./hello_lambda
47
handler: app.lambda_handler
48
runtime: python${{ env.PYTHON_VERSION }}
49
role: ${{ env.lambda-role-arn }}
0 commit comments