Merge pull request #4396: CI(windows): Zip all PDB files

Instead of publishing each and every PDB file separately, we now zip
them together into an archive and publish that. That'll reduce the
amount of published files which should make it easier to find what
you're looking for.
This commit is contained in:
Robert Adam 2020-08-04 17:47:53 +02:00 committed by GitHub
commit 102c55c7a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,7 +11,8 @@ steps:
.\Create-Win32InstallerMUI.ps1 -PackageName 'Mumble_${{parameters.arch}}' -Version '1.4.0'
cp *.sha* $(Build.ArtifactStagingDirectory)
cp *.msi $(Build.ArtifactStagingDirectory)
cp *.pdb $(Build.ArtifactStagingDirectory)
7z a PDBs.7z *.pdb
cp PDBs.7z $(Build.ArtifactStagingDirectory)
displayName: Build installer
- template: task-publish-artifacts.yml
parameters: