File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,9 @@ description: Action will create/publish an AWS Lambda Layer from your GitHub Wor
77# Lambda Runtimes
88# https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html
99
10+ # Including library dependencies in a layer
11+ # https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html#configuration-layers-path
12+
1013
1114branding :
1215 icon : layers
4346 run : |
4447 if [ "${{ inputs.runtime }}" = "python" ]; then
4548 echo "Building Python Layer"
46- mkdir -p python && pip install -r requirements.txt -t ./python
49+ mkdir -p python && pip3 install -r requirements.txt -t ./python
4750 zip -r lambda_layer.zip ./python
4851 elif [ "${{ inputs.runtime }}" = "node" ]; then
4952 echo "Building Node Layer"
You can’t perform that action at this time.
0 commit comments