Can Gruntwork Pipelines push images to ECR repos and deploy them automatically using GitHub Actions? #68
-
A customer asked:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The pipeline can build the image and push it to the ECR repo, then it can also update and roll out the service, including updating the tag and creating a Fargate task. One limitation to note is that GitHub Actions doesn’t have support for approval workflows unless you have GitHub Enterprise. Hence we haven’t implemented that feature in our GitHub Actions code. The customer can always update that if they have GitHub Enterprise, or they can use an alternative CI/CD like Circleci, or they can simply not use the approval workflow and instead manually roll changes forward. |
Beta Was this translation helpful? Give feedback.
The pipeline can build the image and push it to the ECR repo, then it can also update and roll out the service, including updating the tag and creating a Fargate task.
One limitation to note is that GitHub Actions doesn’t have support for approval workflows unless you have GitHub Enterprise. Hence we haven’t implemented that feature in our GitHub Actions code. The customer can always update that if they have GitHub Enterprise, or they can use an alternative CI/CD like Circleci, or they can simply not use the approval workflow and instead manually roll changes forward.