Skip to content

Commit

Permalink
Fix release pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
AArnott committed May 10, 2024
1 parent e47f83b commit a37a0b4
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions azure-pipelines/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand All @@ -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: |
Expand Down

0 comments on commit a37a0b4

Please sign in to comment.