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 b88beb1 commit 5b77759Copy full SHA for 5b77759
Build.ps1
@@ -1,7 +1,8 @@
1
param (
2
[switch]$Build,
3
[switch]$Licensing,
4
- [switch]$Pack
+ [switch]$Pack,
5
+ [switch]$Publish
6
)
7
8
# Load Toolkit
@@ -25,4 +26,8 @@ if ($Pack) {
25
26
Invoke-PackAll -Symbols
27
}
28
-Write-Host "Success!"
29
+if ($Publish) {
30
+ dotnet nuget push "artifacts/packages/" --api-key $MORYX_NUGET_APIKEY --source $MORYX_PACKAGE_TARGET --skip-duplicate --symbol-api-key $MORYX_NUGET_APIKEY --symbol-source $MORYX_PACKAGE_TARGET_V3
31
+}
32
+
33
+Write-Host "Success!"
0 commit comments