Skip to content
This repository was archived by the owner on Aug 22, 2025. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@ inputs:
required: false
default: eu-central-1
ecr-registry:
description: ECS Registry to deploy to
description: ECS Registry that holds repository to deploy from
required: true
ecr-repository:
description: ECS Repository to deploy to
description: ECS Repository to deploy image from
required: true
ecs-cluster:
description: ECS Cluster to deploy to
description: ECS Cluster to deploy task definition to
required: true
container-name:
description: Container name to deploy
description: Container name to to use in task definition
required: true
task-definition:
description: Name of the task definition
Expand Down Expand Up @@ -65,7 +65,7 @@ runs:
container-name: ${{ inputs.container-name }}
image: ${{ inputs.ecr-registry }}/${{ inputs.ecr-repository }}:${{ env.IMAGE_TAG }}

- name: Run Task on Amazon ECS
- name: Deploy Task Definition on Amazon ECS
uses: aws-actions/amazon-ecs-deploy-task-definition@v1
with:
task-definition: ${{ steps.task-def.outputs.task-definition }}
Expand Down