Skip to content

Commit 83e580c

Browse files
Fix nuget publish stage
1 parent 31ee35e commit 83e580c

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

build/azure-pipelines.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -829,6 +829,8 @@ stages:
829829
condition: and(succeeded(), or(eq(dependencies.Build.outputs['A.build.NBGV_PublicRelease'], 'True'), ${{parameters.myGetDeploy}}))
830830
jobs:
831831
- job:
832+
pool:
833+
vmImage: "windows-latest" # NuGetCommand@2 is no longer supported on Ubuntu 24.04 so we'll use windows until an alternative is available.
832834
displayName: Push to pre-release feed
833835
steps:
834836
- checkout: none
@@ -890,6 +892,8 @@ stages:
890892
condition: and(succeeded(), or(eq(dependencies.Build.outputs['A.build.NBGV_PublicRelease'], 'True'), ${{parameters.nuGetDeploy}}))
891893
jobs:
892894
- job:
895+
pool:
896+
vmImage: "windows-latest" # NuGetCommand@2 is no longer supported on Ubuntu 24.04 so we'll use windows until an alternative is available.
893897
displayName: Push to NuGet
894898
steps:
895899
- checkout: none

0 commit comments

Comments
 (0)