File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -184,10 +184,10 @@ else
184
184
foreach ($package in $packages )
185
185
{
186
186
# Publish the packages to the nuget feed if:
187
- # 1 - It's a fullBuild (already checked, for not a PR)
187
+ # 1 - It's a Daily build (already checked, for not a PR)
188
188
# 2 - We have the info to publish (NUGET_KEY and NUGET_URL)
189
189
# 3 - it's a nupkg file
190
- if ($isFullBuild -and $env: NUGET_KEY -and $env: NUGET_URL -and [system.io.path ]::GetExtension($package ) -ieq ' .nupkg' )
190
+ if ($isDailyBuild -and $env: NUGET_KEY -and $env: NUGET_URL -and [system.io.path ]::GetExtension($package ) -ieq ' .nupkg' )
191
191
{
192
192
log " pushing $package to $env: NUGET_URL "
193
193
Start-NativeExecution - sb {dotnet nuget push $package -- api- key $env: NUGET_KEY -- source " $env: NUGET_URL /api/v2/package" } - IgnoreExitcode
You can’t perform that action at this time.
0 commit comments