No, you cannot skip a build stage in AWS CodePipeline directly.
But here’s what you can do:
Use a condition: You can add a rule (like a check using AWS Lambda) to only run the build if needed. For example, run the build only when certain files change.
Use different pipelines: You can create separate pipelines for different tasks, so you don’t always run the build stage.
Make the build optional (in a way): You can change the build action to just pass or do nothing if certain conditions are met.
Also you can visit DevOps with AWS institute if you want proper path .