@@ -216,7 +216,7 @@ extends:
216
216
- task : 1ES.PublishNuget@1
217
217
displayName : ' NuGet push'
218
218
inputs :
219
- packagesToPush : ' $(Pipeline.Workspace)/Nugets/ Microsoft.OpenApi.Hidi.*.nupkg'
219
+ packagesToPush : ' $(Pipeline.Workspace)/Microsoft.OpenApi.Hidi.*.nupkg'
220
220
packageParentPath : ' $(Pipeline.Workspace)'
221
221
nuGetFeedType : external
222
222
publishFeedCredentials : ' OpenAPI Nuget Connection'
@@ -238,7 +238,7 @@ extends:
238
238
vmImage : ubuntu-latest
239
239
steps :
240
240
- powershell : |
241
- $fileNames = "$(Pipeline.Workspace)/Nugets/ Microsoft.OpenApi.Hidi.*.nupkg", "$(Pipeline.Workspace)/Nugets/ Microsoft.OpenApi.Readers.*.nupkg", "$(Pipeline.Workspace)/Nugets /Microsoft.OpenApi.Workbench.*.nupkg"
241
+ $fileNames = "$(Pipeline.Workspace)/Microsoft.OpenApi.Hidi.*.nupkg", "$(Pipeline.Workspace)/Microsoft.OpenApi.Readers.*.nupkg", "$(Pipeline.Workspace)/Microsoft.OpenApi.Workbench.*.nupkg"
242
242
foreach($fileName in $fileNames) {
243
243
if(Test-Path $fileName) {
244
244
rm $fileName -Verbose
@@ -248,7 +248,7 @@ extends:
248
248
- task : 1ES.PublishNuget@1
249
249
displayName : ' NuGet push'
250
250
inputs :
251
- packagesToPush : ' $(Pipeline.Workspace)/Nugets/ Microsoft.OpenApi.*.nupkg'
251
+ packagesToPush : ' $(Pipeline.Workspace)/Microsoft.OpenApi.*.nupkg'
252
252
packageParentPath : ' $(Pipeline.Workspace)'
253
253
nuGetFeedType : external
254
254
publishFeedCredentials : ' OpenAPI Nuget Connection'
@@ -272,7 +272,7 @@ extends:
272
272
- task : 1ES.PublishNuget@1
273
273
displayName : ' NuGet push'
274
274
inputs :
275
- packagesToPush : ' $(Pipeline.Workspace)/Nugets/ Microsoft.OpenApi.Readers.*.nupkg'
275
+ packagesToPush : ' $(Pipeline.Workspace)/Microsoft.OpenApi.Readers.*.nupkg'
276
276
packageParentPath : ' $(Pipeline.Workspace)'
277
277
nuGetFeedType : external
278
278
publishFeedCredentials : ' OpenAPI Nuget Connection'
@@ -294,22 +294,21 @@ extends:
294
294
vmImage : ubuntu-latest
295
295
steps :
296
296
- pwsh : |
297
- $artifactName = Get-ChildItem -Path $(Pipeline.Workspace)\Nugets -Filter Microsoft.OpenApi.*.nupkg -recurse | select -First 1
297
+ $artifactName = Get-ChildItem -Path $(Pipeline.Workspace) -Filter Microsoft.OpenApi.*.nupkg -recurse | select -First 1
298
298
$artifactVersion= $artifactName.Name -replace "Microsoft.OpenApi.", "" -replace ".nupkg", ""
299
299
#Set Variable $artifactName and $artifactVersion
300
- Write-Host "##vso[task.setvariable variable=artifactVersion; isSecret=false; isOutput=true ]$artifactVersion"
300
+ Write-Host "##vso[task.setvariable variable=artifactVersion; isSecret=false;]$artifactVersion"
301
301
echo "$artifactVersion"
302
302
displayName: 'Fetch Artifact Name'
303
- name: getTagVersion
304
303
- task : GitHubRelease@1
305
304
displayName : ' GitHub release (edit)'
306
305
condition : succeededOrFailed()
307
306
inputs :
308
307
gitHubConnection : ' Github-MaggieKimani1'
309
308
action : create
310
309
tagSource : userSpecifiedTag
311
- tag : ' $(getTagVersion. artifactVersion)'
312
- title : ' $(getTagVersion. artifactVersion)'
310
+ tag : ' $(artifactVersion)'
311
+ title : ' $(artifactVersion)'
313
312
releaseNotesSource : inline
314
313
assets : ' $(Pipeline.Workspace)\**\*.exe'
315
314
changeLogType : issueBased
0 commit comments