-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sign entries for cosign also for sign new manifests and tag docker #240
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #240 +/- ##
==========================================
Coverage 100.00% 100.00%
==========================================
Files 26 26
Lines 3106 3226 +120
==========================================
+ Hits 3106 3226 +120 ☔ View full report in Codecov by Sentry. |
- Added missing namespace in copy_tag_sign_images
pubtools/_quay/tag_docker.py
Outdated
@@ -666,7 +697,7 @@ def merge_manifest_lists_sign_images( | |||
if outdated_manifests: | |||
signer.remove_signatures(outdated_manifests, _exclude=current_signatures) | |||
signer.sign_containers( | |||
to_sign_entries, | |||
to_sign_entries if signercls.pre_push else to_sign_entries_internal, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It should always be to_sign_entries as it's already in if pre_push is true. And line #733 needs to be to_sign_entries_internal.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed
No description provided.