Problem
In PublishImageAndSign, only the first image address is signed when multiple tags are published.
// Only signing imageAddrs[0]
_, err = m.Sign(..., imageAddrs[0])
During releases with IMAGE_TAGS: "latest,v1.0.0", both tags are published but only the first one gets signed.
Screenshot
Fix
Loop through all published image addresses and sign each one.
Problem
In
PublishImageAndSign, only the first image address is signed when multiple tags are published.During releases with
IMAGE_TAGS: "latest,v1.0.0", both tags are published but only the first one gets signed.Screenshot
Fix
Loop through all published image addresses and sign each one.