Publish flattened artifacts
3b9120b9
Michael Kubacki
committed
succeeded
1 changed file
NugetPublishingStage.yml
/.azuredevops/NugetPublishingStage.yml-2+17
/.azuredevops/NugetPublishingStage.yml
Add comment 102 tags: 'release' # Only publish builds with the "release" tag set
Add comment 103 downloadType: 'single'
Add comment 104 artifactName: 'Executable'
Add comment 105 Minus   downloadPath: '$(Build.StagingDirectory)/Nuget/package_contents/Linux-x86'
Add comment 105 Plus   downloadPath: '$(Build.StagingDirectory)/Artifacts/Linux-x86'
Add comment 106
Add comment 107 - task: DownloadBuildArtifacts@0
Add comment 108 name: DownloadWindowsBuildArtifacts
Add comment 116 tags: 'release' # Only publish builds with the "release" tag set
Add comment 117 downloadType: 'single'
Add comment 118 artifactName: 'Executable'
Add comment 119 Minus   downloadPath: '$(Build.StagingDirectory)/Nuget/package_contents/Windows-x86'
Add comment 119 Plus   downloadPath: '$(Build.StagingDirectory)/Artifacts/Windows-x86'
Add comment 120 Plus  
Add comment 121 Plus  - task: CopyFiles@2
Add comment 122 Plus   displayName: "Copy Linux Executable"
Add comment 123 Plus   inputs:
Add comment 124 Plus   targetFolder: '$(Build.StagingDirectory)/Nuget/package_contents/Linux-x86'
Add comment 125 Plus   SourceFolder: '$(Build.StagingDirectory)/Artifacts/Linux-x86'
Add comment 126 Plus   contents: '**'
Add comment 127 Plus   flattenFolders: true
Add comment 120 128
Add comment 129 Plus  - task: CopyFiles@2
Add comment 130 Plus   displayName: "Copy Windows Executable"
Add comment 131 Plus   inputs:
Add comment 132 Plus   targetFolder: '$(Build.StagingDirectory)/Nuget/package_contents/Windows-x86'
Add comment 133 Plus   SourceFolder: '$(Build.StagingDirectory)/Artifacts/Windows-x86'
Add comment 134 Plus   contents: '**'
Add comment 135 Plus   flattenFolders: true
Add comment 121 136
Add comment 122 137 - task: PowerShell@2
Add comment 123 138 displayName: Generate Nuget Config File