Simple cheatsheet table to show differences between Continuous Integration / Continuous Delivery / Continuous Deployment
| Continuous Integration | Continuous Delivery | Continuous Deployment |
|---|---|---|
| Code builds and is properly tested | Code builds and is properly tested | Code builds and is properly tested |
| Code is integrated to the codebase | Code is integrated to the codebase | Code is integrated to the codebase |
| – | Code is ready for release | Code is ready for release |
| – | – | Code is automatically deployed at the end of the CI/CD pipeline |