mirror of https://github.com/abpframework/abp
Merge pull request #15258 from abpframework/skoc10/push-nightly-myget
Create push-nightly-packages-myget.ps1pull/15268/head
commit
e04173c8db
@ -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…
Reference in new issue