We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31f72df commit ec1a016Copy full SHA for ec1a016
.github/workflows/deploy_lambda.yml
@@ -18,6 +18,7 @@ defaults:
18
env:
19
PYTHON_VERSION: 3.13
20
function-name: external_library_lambda
21
+ lambda-role-arn: ${{ secrets.LAMBDA_ROLE_ARN }} # 変更箇所
22
jobs:
23
main:
24
runs-on: ubuntu-latest
@@ -45,6 +46,7 @@ jobs:
45
46
code-artifacts-dir: ./external_library_lambda
47
handler: app.lambda_handler
48
runtime: python${{ env.PYTHON_VERSION }}
49
+ role: ${{ env.lambda-role-arn }}
50
timeout: 30
51
environment: |
52
{
0 commit comments