We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97d1db6 commit 5627ee3Copy full SHA for 5627ee3
Jenkinsfile
@@ -252,6 +252,18 @@ pipeline {
252
'''.stripIndent()
253
}
254
255
+ }
256
+
257
+ stage ('Publishing artifacts to clouds'){
258
+ when { branch 'release/latest' }
259
+ agent { label 'windows' }
260
261
+ steps{
262
+ unstash 'winDist'
263
+ withCredentials([string(credentialsId: 'NuGetToken', variable: 'NUGET_TOKEN')]) {
264
+ bat "chcp $outputEnc > nul\r\n\"${tool 'MSBuild'}\" Build.csproj /t:PublishNuget /p:NugetToken=$NUGET_TOKEN"
265
266
267
268
269
0 commit comments