We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12f0501 commit e704c2fCopy full SHA for e704c2f
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