Problem Statement
Describe a clean promotion path from dev to staging to prod in your pipeline.
Explanation
Build once, promote the same artifact forward. Run integration tests in staging, then require an approval or automated checks before prod.
Keep environment config externalized so the artifact stays identical across stages.
Code Solution
SolutionRead Only
artifact: app-1.4.2.tgz promote: dev -> staging -> prod
