Skip to content

Commit ca57d37

Browse files
committed
fix error when pushing the nuget package to nuget.org
The push worked but the build failed with error: "Your package was pushed. error: File does not exist (true)." According to this (not tested), the fix is to remove "true" NuGet/Home#11601 (comment)
1 parent 63a8d4d commit ca57d37

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release_plugin.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,4 @@ jobs:
4848
- name: Push to Nuget.org nuget feed
4949
run: |
5050
cd "src/${{ github.event.repository.name }}/bin/Release"
51-
dotnet nuget push *.nupkg -k ${{ secrets.NUGET_PUSH_TOKEN }} -s https://api.nuget.org/v3/index.json -n true
51+
dotnet nuget push *.nupkg -k ${{ secrets.NUGET_PUSH_TOKEN }} -s https://api.nuget.org/v3/index.json -n

0 commit comments

Comments
 (0)