fix(deploy): avoid full private provenance downloads - #202
Merged
allenwoods merged 1 commit intoJul 10, 2026
Conversation
Contributor
Author
|
@FatNine when you have a moment, please review this exact head. Both required CI paths are green, the production dry-run completed without mutation, and the adversarial review found no remaining P0/P1/P2. The repository ruleset intentionally requires a non-author CODEOWNER approval, so I will not bypass it. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
blob:noneRoot cause
The content publisher previously fetched the complete access-controlled repository into a fresh bare repository for both dry-run and apply. Unrelated archives and binary history made that provenance proof unnecessarily slow and duplicated the transfer for every release attempt.
The new flow keeps the remote commit, tree, config, and manifest authoritative without downloading unrelated source blobs or history.
Verification
bash deploy/content/tests/run.sh— 31/31 passed on GNU Bash 3.2python3 -m unittest discover -s scripts/ci -p 'test_*.py' -q— 53/53 passedscripts/check-public-repository-boundary.sh— PASSgit diff --check— PASSDeployment
No deployment is performed by this PR. The content-only production flow will be exercised only after this change is promoted to
prodand the access-controlled release wrapper pins that exact revision.