Azure pipelines Universal Package Task fails with error “The package name provided is invalid”
问题 Snippet from Yaml file of my pipeline where I archive the build directory, publish it to artifacts and then try to make the artifact available as a universal package in Azure Artifacts. - task: ArchiveFiles@2 inputs: rootFolderOrFile: '$(Build.SourcesDirectory)/Software/MCU/build/pkgs' archiveType: 'zip' archiveFile: $(Build.ArtifactStagingDirectory)/$(Build.BuildId).zip - task: PublishBuildArtifacts@1 inputs: pathtoPublish: '$(Build.ArtifactStagingDirectory)' artifactName: MCU_Build - task: