Skip to content

Commit 4a30df9

Browse files
committed
Fix AppVeyor release script
1 parent f99bb20 commit 4a30df9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ on_success:
2626
- ps: >-
2727
if ($env:NuGetApiKey -and $env:APPVEYOR_REPO_TAG_NAME -match "^v\d\.\d") {
2828
Write-Output "Publishing release packages to nuget.org due to pushed tag $env:APPVEYOR_REPO_TAG_NAME"
29-
Get-ChildItem bin\Release\PCLCrypto.NuGet\PCLCrypto.*.nupkg -exclude *.symbols.nupkg |% {
29+
Get-ChildItem bin\Release\Packages\*.nupkg -exclude *.symbols.nupkg |% {
3030
nuget push $_ -ApiKey $env:NuGetApiKey
3131
}
3232
}

0 commit comments

Comments
 (0)