What is "continuous deployment" (CD), and how does it relate to continuous delivery?
Correct! Well done.
Incorrect.
The correct answer is A) Continuous deployment automatically releases every change that passes automated tests directly to production; continuous delivery ensures code is always in a deployable state but may require manual approval before release to production
Correct Answer
Continuous deployment automatically releases every change that passes automated tests directly to production; continuous delivery ensures code is always in a deployable state but may require manual approval before release to production
Continuous delivery keeps the codebase always ready for release (with a manual "go" step), while continuous deployment goes further by automatically pushing every validated change to production without manual intervention.