We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f97d43b commit 21b4a04Copy full SHA for 21b4a04
build.ps1
@@ -151,7 +151,10 @@ function Push {
151
throw "Cannot push a NuGet package without providing an API key in the `NuGetApiKey` argument."
152
}
153
154
- $PackageFile = "$PSScriptRoot/EdFi.AdminConsole.InstanceManagementWorker.$PackageVersion.nupkg"
+ if (-not $PackageFile) {
155
+ $PackageFile = "$PSScriptRoot/EdFi.AdminConsole.InstanceManagementWorker.$Version.nupkg"
156
+ }
157
+
158
DotnetPush -PackageFileName $PackageFile
159
160
0 commit comments