How AI is applied across API Evangelist and APIs.io. Read my AI disclosure →
API Evangelist API Evangelist
Discovery
Learnings
Guidance
Toolbox
Alignment
API Evangelist LLC

How to prevent AWS CodePipeline from Deploying Service in ECS When Image Hasn't Changed?

calendar_today August 1, 2024 person Ziaf Nadeem domain amazon-codebuild

AWS CodePipeline Deploys Unchanged Images in ECS I am deploying multiple services using AWS CodePipeline and CodeBuild. The pipeline has been set up using AWS Copilot with the following commands: copilot init pipeline copilot pipeline deploy Below is a snippet of my pipeline manifest file: name: ** version: 1 source: provider: GitHub properties: branch: *** repository: ***** connection_name: **** stages: - name: ***** deployments: - service1 - service2 - service3: depends_on: [service1, service2] Buildspec.yaml # Buildspec runs in the build stage of your pipeline. versi

open_in_new Read original post