diff --git a/action.yml b/action.yml index 318d0c3..9084856 100644 --- a/action.yml +++ b/action.yml @@ -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 @@ -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 }}