Skip to content

Commit 0008dbd

Browse files
committed
restore nuget push
1 parent a1742eb commit 0008dbd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release/publish-packages.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ $RELEASES_PATH = "$githubWorkspace\.github\.release"
66
# Publish package
77
$PACKAGE_NAME = Get-ChildItem -Name -Path "$RELEASES_PATH\Api\*" -Include *.nupkg
88
$PACKAGE_PATH = "$RELEASES_PATH\Api\$PACKAGE_NAME"
9-
# nuget.exe push $PACKAGE_PATH -Source "https://www.nuget.org" -ApiKey $nugetApiKey
9+
nuget.exe push $PACKAGE_PATH -Source "https://www.nuget.org" -ApiKey $nugetApiKey
1010

1111
# Publish PCL package.
1212
$PCL_PACKAGE_NAME = Get-ChildItem -Name -Path "$RELEASES_PATH\PCL\*" -Include *.nupkg
1313
$PCL_PACKAGE_PATH = "$RELEASES_PATH\PCL\$PCL_PACKAGE_NAME"
14-
# nuget.exe push $PCL_PACKAGE_PATH -Source "https://www.nuget.org" -ApiKey $nugetApiKey
14+
nuget.exe push $PCL_PACKAGE_PATH -Source "https://www.nuget.org" -ApiKey $nugetApiKey
1515

1616
# Publish UWP package.
1717
$UWP_PACKAGE_NAME = Get-ChildItem -Name -Path "$RELEASES_PATH\UWP\*" -Include *.nupkg
1818
$UWP_PACKAGE_PATH = "$RELEASES_PATH\UWP\$UWP_PACKAGE_NAME"
19-
# nuget.exe push $UWP_PACKAGE_PATH -Source "https://www.nuget.org" -ApiKey $nugetApiKey
19+
nuget.exe push $UWP_PACKAGE_PATH -Source "https://www.nuget.org" -ApiKey $nugetApiKey

0 commit comments

Comments
 (0)