From a37a0b4b70dc5028ee4fe652e3bd57bcdb525e69 Mon Sep 17 00:00:00 2001 From: Andrew Arnott Date: Fri, 10 May 2024 11:24:00 -0600 Subject: [PATCH] Fix release pipeline --- azure-pipelines/release.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/azure-pipelines/release.yml b/azure-pipelines/release.yml index f1c75964..dc8d7439 100644 --- a/azure-pipelines/release.yml +++ b/azure-pipelines/release.yml @@ -35,8 +35,8 @@ extends: outputs: - output: nuget displayName: 📦 Push packages to nuget.org - packagesToPush: '$(Pipeline.Workspace)/CI/deployables-Windows/NuGet/*.nupkg' - packageParentPath: $(Pipeline.Workspace)/CI/deployables-Windows/NuGet + packagesToPush: '$(Pipeline.Workspace)/CI/deployables-Windows/*.nupkg' + packageParentPath: $(Pipeline.Workspace)/CI/deployables-Windows allowPackageConflicts: true nuGetFeedType: external publishFeedCredentials: Microsoft.Windows.CsWin32 @@ -53,7 +53,6 @@ extends: - download: CI artifact: deployables-Windows displayName: 🔻 Download deployables-Windows artifact - patterns: 'deployables-Windows/NuGet/*' - task: GitHubRelease@1 displayName: 📢 GitHub release (create) inputs: @@ -65,7 +64,7 @@ extends: title: v$(resources.pipeline.CI.runName) isDraft: true # After running this step, visit the new draft release, edit, and publish. isPreRelease: $(IsPrerelease) - assets: $(Pipeline.Workspace)/CI/deployables-Windows/NuGet/*.nupkg + assets: $(Pipeline.Workspace)/CI/deployables-Windows/*.nupkg changeLogCompareToRelease: lastNonDraftRelease changeLogType: issueBased changeLogLabels: |