Production for a tax-portal release must deploy the exact build artifact that passed staging. Which practice preserves that guarantee?
Select an answer to reveal the explanation.
Short Explanation
What passed staging should be the same bits in prod—promote the sealed crate, do not bake a fresh cake from "almost the same" ingredients. Rebuilds invent a stranger in production.
Full Explanation
Artifact immutability means the identical build output validated in staging is promoted to production rather than recompiled. Rebuilding in later stages or deploying different commits breaks the tested-to-released linkage required for reliable promotion.