3
3
<!-- action-docs-description -->
4
4
## Description
5
5
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 .
7
7
<!-- action-docs-description -->
8
8
9
9
### 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
12
12
the GitHub Workflow.
13
13
14
14
This 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
19
19
``` yaml
20
20
- name : Execute migrations and seeders
21
21
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
23
23
with :
24
24
cluster : application-cluster
25
25
task-definition : application-task-def
@@ -48,7 +48,7 @@ This action is great for executing migrations or other pre/post deployment steps
48
48
` ` ` yaml
49
49
- name : Run migration container
50
50
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
52
52
with :
53
53
cluster : application-cluster
54
54
task-definition : application-task-def
@@ -62,7 +62,7 @@ You can use the backslash character `\` to append multiple lines into a single l
62
62
commands to execute and want to keep the YAML file readable. Otherwise, each line will be passed to the AWS ECS Fargate
63
63
task as a separate argument.
64
64
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.
66
66
> You can read more about this in the [YAML documentation](https://yaml.org/spec/1.2/spec.html#id2794534).
67
67
68
68
For example :
0 commit comments