Need to create a Azure DevOps GitHub Artifact programmatically. I'm using .Net Client Libraries and tried the following code.
var artifactMetaData = new ArtifactMetadata { Alias = "ArtiAlias", InstanceReference = new BuildVersion { Id = "32q42324QQe1" } };
The Id I'm refering here is the commit Id of a Git Repo.
I could create Build Artifacts successfully using the above code but it doesn't create GitHub Artifacts.