33<!-- action-docs-description -->
44## Description
55
6- Run an AWS ECS Fargate task and execute a custom commands . See the log output of the commands .
6+ Run an AWS ECS Fargate task and execute a custom command . See the log output of the command that is executed .
77<!-- action-docs-description -->
88
99### Details
10- This action makes it possible to run an AWS ECS Fargate task and execute a custom command . If the task definition
11- defines logs to CloudWatch this action will also tail the output of container, providing instant feedback inside
10+ This action makes it possible to run an AWS ECS Fargate task and execute custom commands . If the task definition
11+ is configured to log to CloudWatch, this action will try to tail the output of container, providing instant feedback inside
1212the GitHub Workflow.
1313
1414This action is great for executing migrations or other pre/post deployment steps for ECS Fargate applications.
@@ -19,7 +19,7 @@ This action is great for executing migrations or other pre/post deployment steps
1919``` yaml
2020- name : Execute migrations and seeders
2121 id : run-task
22- uses : geekcell/github-action-aws-ecs-run-task@v1 .0.0
22+ uses : geekcell/github-action-aws-ecs-run-task@v3 .0.0
2323 with :
2424 cluster : application-cluster
2525 task-definition : application-task-def
@@ -48,7 +48,7 @@ This action is great for executing migrations or other pre/post deployment steps
4848` ` ` yaml
4949- name : Run migration container
5050 id : run-task
51- uses : geekcell/github-action-aws-ecs-run-task@v1 .0.0
51+ uses : geekcell/github-action-aws-ecs-run-task@v3 .0.0
5252 with :
5353 cluster : application-cluster
5454 task-definition : application-task-def
@@ -62,7 +62,7 @@ You can use the backslash character `\` to append multiple lines into a single l
6262commands to execute and want to keep the YAML file readable. Otherwise, each line will be passed to the AWS ECS Fargate
6363task as a separate argument.
6464
65- > **Note:** Make sure to use the `|` character to make sure the YAML parser interprets the value as a multiline string.
65+ > **Note:** Make sure to use the `|` character so the YAML parser interprets the value as a multiline string.
6666> You can read more about this in the [YAML documentation](https://yaml.org/spec/1.2/spec.html#id2794534).
6767
6868For example :
0 commit comments