We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4c2cc9 commit 9fd52cdCopy full SHA for 9fd52cd
azure-pipelines-1.yml
@@ -12,7 +12,7 @@ pool:
12
13
variables:
14
Configuration: Release
15
- NightlyBuild: $(nightlyBuild)
+ UploadPackageToFeed: $(UploadPackageToPreReleaseFeed)
16
17
steps:
18
- pwsh: ./build.ps1 -NoBuild -Bootstrap
@@ -41,7 +41,7 @@ steps:
41
Copy-Item -Path $sourcePath -Destination $(Build.ArtifactStagingDirectory) -ErrorAction Stop -Verbose -Force
42
displayName: 'Copy package to ArtifactStagingDirectory'
43
- task: NuGetCommand@2
44
- condition: and(variables.NightlyBuild, true)
+ condition: and(variables.UploadPackageToFeed, true)
45
inputs:
46
command: 'push'
47
packagesToPush: '$(Build.ArtifactStagingDirectory)/**/*.nupkg;!$(Build.ArtifactStagingDirectory)/**/*.symbols.nupkg'
0 commit comments