Skip to content

Commit

Permalink
[PRMDR-161] Fix github action .yml for auth lambdas (#76)
Browse files Browse the repository at this point in the history
  • Loading branch information
joefong-nhs authored Oct 5, 2023
1 parent a635db6 commit 814f8ef
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/lambdas-dev-to-main-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ jobs:
uses: appleboy/lambda-action@master
with:
aws_region: ${{ vars.AWS_REGION }}
function_name: ${{ github.event.inputs.sandboxWorkspace}}_LoginRedirectHandler
function_name: ${{ vars.BUILD_ENV }_LoginRedirectHandler
zip_file: package_lambdas_login_redirect_handler.zip

python_deploy_authoriser_lambda:
Expand Down Expand Up @@ -385,7 +385,7 @@ jobs:
uses: appleboy/lambda-action@master
with:
aws_region: ${{ vars.AWS_REGION }}
function_name: ${{ github.event.inputs.sandboxWorkspace}}_AuthoriserLambda
function_name: ${{ vars.BUILD_ENV }_AuthoriserLambda
zip_file: package_lambdas_authoriser_handler.zip

python_deploy_token_lambda:
Expand Down Expand Up @@ -432,7 +432,7 @@ jobs:
uses: appleboy/lambda-action@master
with:
aws_region: ${{ vars.AWS_REGION }}
function_name: ${{ github.event.inputs.sandboxWorkspace}}_TokenRequestHandlerLambda
function_name: ${{ vars.BUILD_ENV }_TokenRequestHandlerLambda
zip_file: package_lambdas_token_handler.zip

python_deploy_logout_handler_lambda:
Expand Down Expand Up @@ -479,5 +479,5 @@ jobs:
uses: appleboy/lambda-action@master
with:
aws_region: ${{ vars.AWS_REGION }}
function_name: ${{ github.event.inputs.sandboxWorkspace}}_LogoutHandler
function_name: ${{ vars.BUILD_ENV }_LogoutHandler
zip_file: package_lambdas_logout_handler.zip

0 comments on commit 814f8ef

Please sign in to comment.