mirror of https://github.com/abpframework/abp.git
committed by
GitHub
1 changed files with 16 additions and 0 deletions
@ -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