Skip to content

Commit 168d0cf

Browse files
committed
Create push-nightly-packages-myget.ps1
1 parent 8236b83 commit 168d0cf

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

nupkg/push-nightly-packages-myget.ps1

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
param(
2+
[string]$source,
3+
[string]$apikey
4+
)
5+
6+
if (!$source)
7+
{
8+
$source = "https://nuget.org/"
9+
}
10+
11+
if (!$apikey)
12+
{
13+
$apikey = "dummy"
14+
}
15+
16+
dotnet nuget push '*.nupkg' -s $source --skip-duplicate --api-key $apikey

0 commit comments

Comments
 (0)