@@ -52,6 +52,8 @@ extends:
52
52
WindowsHostVersion :
53
53
Version : 2022
54
54
Network : KS3
55
+ release :
56
+ category : NonAzure
55
57
stages :
56
58
- stage : build
57
59
jobs :
@@ -119,25 +121,25 @@ extends:
119
121
dependsOn : build
120
122
condition : eq(variables['Build.Reason'], 'Manual')
121
123
variables :
124
+ ob_release_environment : Production
122
125
version : $[ stageDependencies.build.main.outputs['package.version'] ]
123
- drop : $(Pipeline.Workspace)/drop_build_main
124
126
jobs :
125
127
- job : github
126
128
displayName : Publish draft to GitHub
127
129
pool :
128
- type : windows
129
- variables :
130
- ob_outputDirectory : $(Build.SourcesDirectory)/out
130
+ type : release
131
+ templateContext :
132
+ inputs :
133
+ - input : pipelineArtifact
134
+ artifactName : drop_build_main
131
135
steps :
132
- - download : current
133
- displayName : Download artifacts
134
136
- task : GitHubRelease@1
135
137
displayName : Create GitHub release
136
138
inputs :
137
139
gitHubConnection : GitHub
138
140
repositoryName : PowerShell/PSScriptAnalyzer
139
- assets : |
140
- $(drop )/PSScriptAnalyzer.$(version).nupkg
141
+ target : main
142
+ assets : $(Pipeline.Workspace )/PSScriptAnalyzer.$(version).nupkg
141
143
tagSource : userSpecifiedTag
142
144
tag : v$(version)
143
145
isDraft : true
@@ -147,7 +149,7 @@ extends:
147
149
- job : validation
148
150
displayName : Manual validation
149
151
pool :
150
- type : agentless
152
+ type : server
151
153
timeoutInMinutes : 1440
152
154
steps :
153
155
- task : ManualValidation@0
@@ -160,16 +162,16 @@ extends:
160
162
dependsOn : validation
161
163
displayName : Publish to PowerShell Gallery
162
164
pool :
163
- type : windows
164
- variables :
165
- ob_outputDirectory : $(Build.SourcesDirectory)/out
165
+ type : release
166
+ templateContext :
167
+ inputs :
168
+ - input : pipelineArtifact
169
+ artifactName : drop_build_main
166
170
steps :
167
- - download : current
168
- displayName : Download artifacts
169
171
- task : NuGetCommand@2
170
172
displayName : Publish module to PowerShell Gallery
171
173
inputs :
172
174
command : push
173
- packagesToPush : $(drop )/PSScriptAnalyzer.$(version).nupkg
175
+ packagesToPush : $(Pipeline.Workspace )/PSScriptAnalyzer.$(version).nupkg
174
176
nuGetFeedType : external
175
177
publishFeedCredentials : PowerShellGallery
0 commit comments