@@ -14,58 +14,43 @@ jobs:
14
14
steps :
15
15
- task : NuGetToolInstaller@1
16
16
17
- - task : DownloadPipelineArtifact@2
18
- inputs :
19
- artifact : drop_build_windows_build_windows_schannel_Release
20
- path : $(Build.SourcesDirectory)\artifacts\bin\windows
21
- - task : DownloadPipelineArtifact@2
22
- inputs :
23
- artifact : drop_build_windows_build_windows_quictls_Release
24
- path : $(Build.SourcesDirectory)\artifacts\bin\windows
25
-
26
17
- task : DownloadPipelineArtifact@2
27
18
inputs :
28
19
artifact : drop_build_windows_build_windows_schannel_Debug
29
20
path : $(Build.SourcesDirectory)\artifacts\bin\windows
30
21
- task : DownloadPipelineArtifact@2
31
22
inputs :
32
- artifact : drop_build_windows_build_windows_quictls_Debug
23
+ artifact : drop_build_windows_build_windows_schannel_Release
33
24
path : $(Build.SourcesDirectory)\artifacts\bin\windows
34
25
35
- - task : DownloadPipelineArtifact@2
36
- inputs :
37
- artifact : drop_build_uwp_build_uwp_schannel_Debug
38
- path : $(Build.SourcesDirectory)\artifacts\bin\uwp
39
-
40
26
- task : PowerShell@2
41
27
displayName : Package Nuget
42
28
inputs :
43
29
pwsh : false
44
30
filePath : scripts/package-nuget.ps1
45
31
${{ if eq(parameters.release, false) }} :
46
- arguments : -Tls quictls -UWP
32
+ arguments : -Tls schannel
47
33
${{ if eq(parameters.release, true) }} :
48
- arguments : -Tls quictls -UWP -ReleaseBuild
34
+ arguments : -Tls schannel -ReleaseBuild
49
35
50
- - task : PowerShell@2
51
- displayName : Package Nuget
36
+ - task : DownloadPipelineArtifact@2
52
37
inputs :
53
- pwsh : false
54
- filePath : scripts/package-nuget.ps1
55
- ${{ if eq(parameters.release, false) }} :
56
- arguments : -Tls quictls
57
- ${{ if eq(parameters.release, true) }} :
58
- arguments : -Tls quictls -ReleaseBuild
38
+ artifact : drop_build_windows_build_windows_quictls_Debug
39
+ path : $(Build.SourcesDirectory)\artifacts\bin\windows
40
+ - task : DownloadPipelineArtifact@2
41
+ inputs :
42
+ artifact : drop_build_windows_build_windows_quictls_Release
43
+ path : $(Build.SourcesDirectory)\artifacts\bin\windows
59
44
60
45
- task : PowerShell@2
61
46
displayName : Package Nuget
62
47
inputs :
63
48
pwsh : false
64
49
filePath : scripts/package-nuget.ps1
65
50
${{ if eq(parameters.release, false) }} :
66
- arguments : -Tls schannel
51
+ arguments : -Tls quictls
67
52
${{ if eq(parameters.release, true) }} :
68
- arguments : -Tls schannel -ReleaseBuild
53
+ arguments : -Tls quictls -ReleaseBuild
69
54
70
55
- task : onebranch.pipeline.signing@1
71
56
inputs :
0 commit comments