10000 Address PR feedback · PowerShell/PowerShell@b4bcbf1 · GitHub
[go: up one dir, main page]

Skip to content

Commit b4bcbf1

Browse files
committed
Address PR feedback
1 parent 3c00391 commit b4bcbf1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/travis.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,10 +184,10 @@ else
184184
foreach($package in $packages)
185185
{
186186
# 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)
188188
# 2 - We have the info to publish (NUGET_KEY and NUGET_URL)
189189
# 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')
191191
{
192192
log "pushing $package to $env:NUGET_URL"
193193
Start-NativeExecution -sb {dotnet nuget push $package --api-key $env:NUGET_KEY --source "$env:NUGET_URL/api/v2/package"} -IgnoreExitcode

0 commit comments

Comments
 (0)
0