Skip to content

Commit a37a0b4

Browse files
committed
Fix release pipeline
1 parent e47f83b commit a37a0b4

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

azure-pipelines/release.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ extends:
3535
outputs:
3636
- output: nuget
3737
displayName: 📦 Push packages to nuget.org
38-
packagesToPush: '$(Pipeline.Workspace)/CI/deployables-Windows/NuGet/*.nupkg'
39-
packageParentPath: $(Pipeline.Workspace)/CI/deployables-Windows/NuGet
38+
packagesToPush: '$(Pipeline.Workspace)/CI/deployables-Windows/*.nupkg'
39+
packageParentPath: $(Pipeline.Workspace)/CI/deployables-Windows
4040
allowPackageConflicts: true
4141
nuGetFeedType: external
4242
publishFeedCredentials: Microsoft.Windows.CsWin32
@@ -53,7 +53,6 @@ extends:
5353
- download: CI
5454
artifact: deployables-Windows
5555
displayName: 🔻 Download deployables-Windows artifact
56-
patterns: 'deployables-Windows/NuGet/*'
5756
- task: GitHubRelease@1
5857
displayName: 📢 GitHub release (create)
5958
inputs:
@@ -65,7 +64,7 @@ extends:
6564
title: v$(resources.pipeline.CI.runName)
6665
isDraft: true # After running this step, visit the new draft release, edit, and publish.
6766
isPreRelease: $(IsPrerelease)
68-
assets: $(Pipeline.Workspace)/CI/deployables-Windows/NuGet/*.nupkg
67+
assets: $(Pipeline.Workspace)/CI/deployables-Windows/*.nupkg
6968
changeLogCompareToRelease: lastNonDraftRelease
7069
changeLogType: issueBased
7170
changeLogLabels: |

0 commit comments

Comments
 (0)