From bedf7cc7ea60de4a3f13a340d3de7912014073b3 Mon Sep 17 00:00:00 2001 From: Louie Colgan Date: Sat, 4 Sep 2021 15:46:30 +0100 Subject: [PATCH] fix: skip dupe packages + symbols --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 51430a3..fe1717d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -40,7 +40,7 @@ jobs: run: dotnet pack src/Ljbc1994.Blazor.IntersectionObserver/*.csproj --configuration Release --verbosity Detailed - name: Dotnet publish to nuget - run: dotnet nuget push src/Ljbc1994.Blazor.IntersectionObserver/bin/Release/*.nupkg -k $NUGET_AUTH_TOKEN -s https://api.nuget.org/v3/index.json + run: dotnet nuget push src/Ljbc1994.Blazor.IntersectionObserver/bin/Release/*.nupkg -k $NUGET_AUTH_TOKEN -s https://api.nuget.org/v3/index.json --skip-duplicate --no-symbols true env: NUGET_AUTH_TOKEN: ${{ secrets.NUGET_TOKEN }}