name incorrect

This commit is contained in:
Jun-te Kim 2025-09-10 16:54:41 +01:00
parent 0519a70aa8
commit 08e2e19392
2 changed files with 4 additions and 4 deletions

View file

@ -2,7 +2,7 @@ name: "Build and Push Lambda Image to ECR"
description: "Reusable action for building and pushing lambda Docker image to ECR"
inputs:
lambda_name:
ecr_name:
description: "Lambda name / ECR repo name"
required: true
dockerfile_path:

View file

@ -34,7 +34,7 @@ jobs:
- name: Build and deploy Lambda example
uses: ./.github/workflows/actions/lambda-deploy
with:
lambda_name: lambda_example
ecr_name: lambda_example
dockerfile_path: ./deployment/lambda/lambda_example/docker/Dockerfile
ecr_tf_dir: ./deployment/lambda/lambda_example/docker/
lambda_tf_dir: ./deployment/lambda/lambda_example/
@ -57,7 +57,7 @@ jobs:
- name: Build and deploy Extractor & Loader Lambda
uses: ./.github/workflows/actions/lambda-deploy
with:
lambda_name: extractor_and_loader
ecr_name: extractor_and_loader
dockerfile_path: ./deployment/lambda/extractor_and_loader/docker/Dockerfile
ecr_tf_dir: ./deployment/lambda/extractor_and_loader/docker/
lambda_tf_dir: ./deployment/lambda/extractor_and_loader/
@ -81,7 +81,7 @@ jobs:
- name: Build and deploy WalthamForest ETL
uses: ./.github/workflows/actions/lambda-deploy
with:
lambda_name: walthamforest_etl
ecr_name: walthamforest_etl_ecr
dockerfile_path: ./deployment/lambda/walthamforest_etl/docker/Dockerfile
ecr_tf_dir: ./deployment/lambda/walthamforest_etl/docker/
lambda_tf_dir: ./deployment/lambda/walthamforest_etl/