Skip to content

Commit 249ff45

Browse files
authored
Merge pull request #2021 from microsoft/fix/ci-tag-value-to-main
fix/ci tag value to main
2 parents c3d0c15 + 5a824bb commit 249ff45

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

.azure-pipelines/ci-build.yml

+8-9
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ extends:
216216
- task: 1ES.PublishNuget@1
217217
displayName: 'NuGet push'
218218
inputs:
219-
packagesToPush: '$(Pipeline.Workspace)/Nugets/Microsoft.OpenApi.Hidi.*.nupkg'
219+
packagesToPush: '$(Pipeline.Workspace)/Microsoft.OpenApi.Hidi.*.nupkg'
220220
packageParentPath: '$(Pipeline.Workspace)'
221221
nuGetFeedType: external
222222
publishFeedCredentials: 'OpenAPI Nuget Connection'
@@ -238,7 +238,7 @@ extends:
238238
vmImage: ubuntu-latest
239239
steps:
240240
- 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"
242242
foreach($fileName in $fileNames) {
243243
if(Test-Path $fileName) {
244244
rm $fileName -Verbose
@@ -248,7 +248,7 @@ extends:
248248
- task: 1ES.PublishNuget@1
249249
displayName: 'NuGet push'
250250
inputs:
251-
packagesToPush: '$(Pipeline.Workspace)/Nugets/Microsoft.OpenApi.*.nupkg'
251+
packagesToPush: '$(Pipeline.Workspace)/Microsoft.OpenApi.*.nupkg'
252252
packageParentPath: '$(Pipeline.Workspace)'
253253
nuGetFeedType: external
254254
publishFeedCredentials: 'OpenAPI Nuget Connection'
@@ -272,7 +272,7 @@ extends:
272272
- task: 1ES.PublishNuget@1
273273
displayName: 'NuGet push'
274274
inputs:
275-
packagesToPush: '$(Pipeline.Workspace)/Nugets/Microsoft.OpenApi.Readers.*.nupkg'
275+
packagesToPush: '$(Pipeline.Workspace)/Microsoft.OpenApi.Readers.*.nupkg'
276276
packageParentPath: '$(Pipeline.Workspace)'
277277
nuGetFeedType: external
278278
publishFeedCredentials: 'OpenAPI Nuget Connection'
@@ -294,22 +294,21 @@ extends:
294294
vmImage: ubuntu-latest
295295
steps:
296296
- 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
298298
$artifactVersion= $artifactName.Name -replace "Microsoft.OpenApi.", "" -replace ".nupkg", ""
299299
#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"
301301
echo "$artifactVersion"
302302
displayName: 'Fetch Artifact Name'
303-
name: getTagVersion
304303
- task: GitHubRelease@1
305304
displayName: 'GitHub release (edit)'
306305
condition: succeededOrFailed()
307306
inputs:
308307
gitHubConnection: 'Github-MaggieKimani1'
309308
action: create
310309
tagSource: userSpecifiedTag
311-
tag: '$(getTagVersion.artifactVersion)'
312-
title: '$(getTagVersion.artifactVersion)'
310+
tag: '$(artifactVersion)'
311+
title: '$(artifactVersion)'
313312
releaseNotesSource: inline
314313
assets: '$(Pipeline.Workspace)\**\*.exe'
315314
changeLogType: issueBased

0 commit comments

Comments
 (0)