We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17364e8 commit bbc6c67Copy full SHA for bbc6c67
.github/workflows/deployment.yml
@@ -46,11 +46,10 @@ jobs:
46
id: build-image
47
env:
48
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }}
49
- IMAGE_TAG: latest
50
run: |
51
- docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG ./services/question
52
- docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG
53
- echo "image=$ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG" >> $GITHUB_OUTPUT
+ docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:latest ./services/question
+ docker push $ECR_REGISTRY/$ECR_REPOSITORY:latest
+ echo "image=$ECR_REGISTRY/$ECR_REPOSITORY:latest" >> $GITHUB_OUTPUT
54
55
# - name: Fill in the new image ID in the Amazon ECS task definition
56
# id: task-def
0 commit comments