release-get_deployed_version.yml
Retrieve the version currently used in the running service on ECS.
graph LR
START((Start))
get_version[Lookup ECS]
END((End))
START --> get_version
get_version -->|version| END
| name | type | description | default |
|---|---|---|---|
task-name |
string |
The name of the ECS task | ${{ vars.IMAGE_NAME }} |
aws-region |
string |
The AWS region where the task is defined | ${{ vars.AWS_REGION }} |
aws-role-arn |
string |
The ARN of the AWS role to assume for publication | -- |
run-label |
string |
The run label to use for the actions | ubuntu-latest |
| name | description |
|---|---|
version |
The image version of the current ECS task definition. |
--
AWS_REGION(only ifinputs.aws-regionis not set)IMAGE_NAME(only ifinputs.task-nameis not set)
--
--