We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 12f0501 + e704c2f commit 7cdd8d7Copy full SHA for 7cdd8d7
crates/wasm-pkg-client/src/oci/publisher.rs
@@ -55,6 +55,12 @@ impl PackagePublisher for OciBackend {
55
homepage.to_string(),
56
);
57
}
58
+ if let Some(authors) = &meta.author {
59
+ annotations.insert(
60
+ "org.opencontainers.image.authors".to_string(),
61
+ authors.to_string(),
62
+ );
63
+ }
64
65
let reference: Reference = self.make_reference(package, Some(version));
66
let auth = self.auth(&reference, RegistryOperation::Push).await?;
0 commit comments