diff --git a/scripts/nightly.yaml b/scripts/nightly.yaml index e68f38ee9..3ecffea77 100644 --- a/scripts/nightly.yaml +++ b/scripts/nightly.yaml @@ -149,12 +149,12 @@ stages: inputs: sourceFolder: dist contents: '**/*.pdb' - targetFolder: '$(Build.ArtifactStagingDirectory)/symbols' + targetFolder: '$(Build.ArtifactStagingDirectory)/symbols/x86' # Publish symbol archive to match nuget package # Index your source code and publish symbols to a file share or Azure Artifacts symbol server - task: PublishSymbols@2 inputs: - symbolsFolder: '$(Build.ArtifactStagingDirectory)/symbols' + symbolsFolder: '$(Build.ArtifactStagingDirectory)/symbols/x86' searchPattern: '**/*.pdb' indexSources: false # Github not supported publishSymbols: true @@ -189,12 +189,12 @@ stages: inputs: sourceFolder: dist contents: '**/*.pdb' - targetFolder: '$(Build.ArtifactStagingDirectory)/symbols' + targetFolder: '$(Build.ArtifactStagingDirectory)/symbols/x64' # Publish symbol archive to match nuget package # Index your source code and publish symbols to a file share or Azure Artifacts symbol server - task: PublishSymbols@2 inputs: - symbolsFolder: '$(Build.ArtifactStagingDirectory)/symbols' + symbolsFolder: '$(Build.ArtifactStagingDirectory)/symbols/x64' searchPattern: '**/*.pdb' indexSources: false # Github not supported publishSymbols: true