diff --git a/nupkg/push-nightly-packages-myget.ps1 b/nupkg/push-nightly-packages-myget.ps1 new file mode 100644 index 0000000000..ff3eb93774 --- /dev/null +++ b/nupkg/push-nightly-packages-myget.ps1 @@ -0,0 +1,16 @@ +param( + [string]$source, + [string]$apikey +) + +if (!$source) +{ + $source = "https://nuget.org/" +} + +if (!$apikey) +{ + $apikey = "dummy" +} + +dotnet nuget push '*.nupkg' -s $source --skip-duplicate --api-key $apikey \ No newline at end of file