File tree Expand file tree Collapse file tree 1 file changed +16
-1
lines changed
Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Original file line number Diff line number Diff line change 11# .NET Desktop
2+
23# Build and run tests for .NET Desktop or Windows classic desktop solutions.
34# Add steps that publish symbols, save build artifacts, and more:
45# https://docs.microsoft.com/azure/devops/pipelines/apps/windows/dot-net
@@ -36,15 +37,29 @@ steps:
3637 inputs :
3738 contents : ' **\bin\**'
3839 targetFolder : $(Build.ArtifactStagingDirectory)
40+
3941- task : ArchiveFiles@2
4042 inputs :
4143 rootFolderOrFile : ' $(Build.ArtifactStagingDirectory)\TimeControl\bin\Release'
4244 includeRootFolder : false
4345 archiveType : ' zip'
4446 archiveFile : ' $(Build.ArtifactStagingDirectory)\$(Build.BuildId).zip'
4547 replaceExistingArchive : true
48+
4649- task : PublishBuildArtifacts@1
4750 inputs :
4851 PathtoPublish : ' $(Build.ArtifactStagingDirectory)\$(Build.BuildId).zip'
4952 ArtifactName : ' AutoBuildOutputs'
50- publishLocation : ' Container'
53+ publishLocation : ' Container'
54+
55+ - task : GitHubRelease@1
56+ inputs :
57+ gitHubConnection : ' github connection 1'
58+ repositoryName : ' SamHou0/ComputerTimeControl'
59+ action : ' create'
60+ target : ' $(Build.SourceVersion)'
61+ tagSource : ' userSpecifiedTag'
62+ tag : ' test'
63+ isDraft : true
64+ changeLogCompareToRelease : ' lastFullRelease'
65+ changeLogType : ' commitBased'
You can’t perform that action at this time.
0 commit comments