We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33e7c6b commit 5eb8a24Copy full SHA for 5eb8a24
.github/workflows/aws.yml
@@ -57,11 +57,16 @@ jobs:
57
.
58
echo "image=058264122535.dkr.ecr.us-east-1.amazonaws.com/ponder/indexer:latest" >> $GITHUB_OUTPUT
59
60
+ - name: Download task definition
61
+ run: |
62
+ aws ecs describe-task-definition --task-definition ${{ env.ECS_TASK_DEFINITION }} \
63
+ --query taskDefinition > task-definition.json
64
+
65
- name: Fill in the new image ID in the Amazon ECS task definition
66
id: task-def
67
uses: aws-actions/amazon-ecs-render-task-definition@v1
68
with:
- task-definition: ${{ env.ECS_TASK_DEFINITION }}
69
+ task-definition: task-definition.json
70
container-name: ${{ env.CONTAINER_NAME }}
71
image: ${{ steps.build-image.outputs.image }}
72
0 commit comments