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 50016c0 commit f3760c8Copy full SHA for f3760c8
Build.ps1
@@ -78,5 +78,9 @@ if ($env:NUGET_API_KEY `
78
if($LASTEXITCODE -ne 0) { throw "Publishing failed" }
79
}
80
} else {
81
- Write-Output "build: Skipping Nuget publish"
+ if ($null -eq $env:NUGET_API_KEY) {
82
+ Write-Output "build: Skipping Nuget publish, API key null"
83
+ } else {
84
+ Write-Output "build: Skipping Nuget publish reftype: $env:GITHUB_REF_TYPE
85
+ }
86
0 commit comments