Skip to content

Commit

Permalink
disable actual publishing for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
gasparnagy committed Nov 6, 2024
1 parent a51999a commit 2990d53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish_packages.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ function Publish-Packages-To-NuGet($settings) {
foreach ($file in $files) {
Write-Output "Uploading $file"
Write-Output "dotnet nuget push $file -k $env:NUGET_PUBLISH_KEY -s https://api.nuget.org/v3/index.json --no-symbols --skip-duplicate"
dotnet nuget push $file -k $env:NUGET_PUBLISH_KEY -s https://api.nuget.org/v3/index.json --no-symbols --skip-duplicate
# dotnet nuget push $file -k $env:NUGET_PUBLISH_KEY -s https://api.nuget.org/v3/index.json --no-symbols --skip-duplicate
Confirm-Exit-Code "upload $file"
}
}
Expand All @@ -42,7 +42,7 @@ function Publish-Symbol-Packages-To-NuGet($settings) {
foreach ($file in $files) {
Write-Output "Uploading $file"
Write-Output "dotnet nuget push $file -k $env:NUGET_PUBLISH_KEY -s https://api.nuget.org/v3/index.json --skip-duplicate"
dotnet nuget push $file -k $env:NUGET_PUBLISH_KEY -s https://api.nuget.org/v3/index.json --skip-duplicate
# dotnet nuget push $file -k $env:NUGET_PUBLISH_KEY -s https://api.nuget.org/v3/index.json --skip-duplicate
Confirm-Exit-Code "upload $file"
}
}
Expand Down

0 comments on commit 2990d53

Please sign in to comment.