Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
craigzour committed May 1, 2024
1 parent 991bb26 commit 5d881c0
Show file tree
Hide file tree
Showing 2 changed files with 258 additions and 233 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,11 @@ runs:
LAMBDA_NAME: ${{ inputs.lambda-name }}
IMAGE_TAG: ${{ inputs.image-tag }}
ECR_REGISTRY: ${{ steps.login-ecr-staging.outputs.registry }}
run: aws lambda update-function-code --function-name $LAMBDA_NAME --image-uri $ECR_REGISTRY/$LAMBDA_NAME-lambda:$IMAGE_TAG
run: |
functionName=$([ "$LAMBDA_NAME" == "submission" ] && echo "Submission" || echo "$LAMBDA_NAME")
echo "DEBUG >>>"
echo $functionName
echo "<<<"
shell: bash

- name: Logout of Staging Amazon ECR
Expand Down
Loading

0 comments on commit 5d881c0

Please sign in to comment.