Merge pull request #15258 from abpframework/skoc10/push-nightly-myget

Create push-nightly-packages-myget.ps1
pull/15268/head
Alper Ebiçoğlu 3 years ago committed by GitHub
commit e04173c8db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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
Loading…
Cancel
Save