Skip to content

Commit

Permalink
fix(aws): lambda-deploy - update alias
Browse files Browse the repository at this point in the history
Fix syntax to reference lambda_version output
  • Loading branch information
fmiquel90 authored Jan 16, 2024
1 parent 3fd1f19 commit 45102a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion actions/aws/lambda-deploy/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ runs:
if: ${{ inputs.LAMBDA_FUNCTION_ALIAS != '' }}
shell: bash
env:
LAMBDA_FUNCTION_VERSION: ${{ steps.update_function.lambda_version }}
LAMBDA_FUNCTION_VERSION: ${{ steps.update_function.outputs.lambda_version }}
LAMBDA_FUNCTION_NAME: ${{ inputs.LAMBDA_FUNCTION_NAME }}
LAMBDA_FUNCTION_ALIAS: ${{ inputs.LAMBDA_FUNCTION_ALIAS }}
run: |
Expand Down

0 comments on commit 45102a4

Please sign in to comment.