Skip to content

Commit

Permalink
fix(lambda-deploy): bad step reference
Browse files Browse the repository at this point in the history
  • Loading branch information
fmiquel90 authored and JoffreyPlouvier committed Jan 16, 2024
1 parent 3c19c24 commit 3fd1f19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions actions/aws/lambda-deploy/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@ runs:
if: ${{ inputs.LAMBDA_FUNCTION_ALIAS != '' }}
shell: bash
env:
LAMBDA_FUNCTION_VERSION: ${{ steps.vars.update_function.lambda_version }}
LAMBDA_FUNCTION_VERSION: ${{ steps.update_function.lambda_version }}
LAMBDA_FUNCTION_NAME: ${{ inputs.LAMBDA_FUNCTION_NAME }}
LAMBDA_FUNCTION_ALIAS: ${{ inputs.LAMBDA_FUNCTION_ALIAS }}
run: |
aws lambda update-alias --function-name $LAMBDA_FUNCTION_NAME --name $LAMBDA_FUNCTION_ALIAS --function-version $LAMBDA_FUNCTION_VERSION
echo "Alias updated"
echo "Alias updated"

0 comments on commit 3fd1f19

Please sign in to comment.