From 645f24687f325d730957a06a5bc25ffa61571890 Mon Sep 17 00:00:00 2001 From: Quake <74355598+QuakeEye@users.noreply.github.com> Date: Mon, 22 Apr 2024 18:33:14 +0200 Subject: [PATCH] fix: add skip duplicate flag to dotnet nuget push (#41) Co-authored-by: Quake --- .github/workflows/test-build-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-build-release.yml b/.github/workflows/test-build-release.yml index aa133e65..a3d24537 100644 --- a/.github/workflows/test-build-release.yml +++ b/.github/workflows/test-build-release.yml @@ -198,4 +198,4 @@ jobs: name: nuget-package path: bin - name: Upload NuGet Package to NuGet.org - run: dotnet nuget push bin/*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json \ No newline at end of file + run: dotnet nuget push bin/*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate \ No newline at end of file